Sha256: 26edd74fb88985d93b24179bad6cb211e74693dbeae9da65ca422c003fc63ccb

Contents?: true

Size: 212 Bytes

Versions: 9

Compression:

Stored size: 212 Bytes

Contents

class SSHProcessFailed < StandardError
  attr_accessor :host, :cmd
  def initialize(host, cmd)
    @host = host
    @cmd = cmd
    message = "SSH server #{host} failed cmd '#{cmd}'" 
    super(message)
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
scout-gear-10.7.3 lib/scout/offsite/exceptions.rb
scout-gear-10.7.2 lib/scout/offsite/exceptions.rb
scout-gear-10.7.1 lib/scout/offsite/exceptions.rb
scout-gear-10.7.0 lib/scout/offsite/exceptions.rb
scout-gear-10.4.0 lib/scout/offsite/exceptions.rb
scout-gear-10.3.0 lib/scout/offsite/exceptions.rb
scout-gear-10.2.0 lib/scout/offsite/exceptions.rb
scout-gear-10.1.0 lib/scout/offsite/exceptions.rb
scout-gear-10.0.1 lib/scout/offsite/exceptions.rb