class Pocketknife::Error::NodeError::RsyncError

RsyncError

Exception raised if rsync command failed.

Attributes

command[RW]

@return [String] Command that failed.

Private Class Methods

new(command, node) click to toggle source
Calls superclass method Pocketknife::Error::NodeError::new
# File lib/pocketknife/errors.rb, line 59
def initialize(command, node)
  super("Failed while rsyncing: #{command}", node)
end