class LSync::CommandFailure
Indicates that a backup action shell script has failed.
Public Class Methods
new(command, status)
click to toggle source
Calls superclass method
LSync::Error::new
# File lib/lsync/error.rb, line 52 def initialize(command, status) super("Command #{command.inspect} failed with exit status #{status}", :command => command, :status => status) end