Exception: RightScale::Exceptions::InternalServerError

Inherits:
NestedException show all
Defined in:
lib/right_agent/exceptions.rb

Overview

Error internal to specified server

Instance Attribute Summary collapse

Attributes inherited from NestedException

#nested_exception

Instance Method Summary collapse

Constructor Details

#initialize(message, server, nested_exception = nil) ⇒ InternalServerError

Returns a new instance of InternalServerError.



65
66
67
68
# File 'lib/right_agent/exceptions.rb', line 65

def initialize(message, server, nested_exception = nil)
  @server = server
  super(message, nested_exception)
end

Instance Attribute Details

#serverObject (readonly)

Returns the value of attribute server.



64
65
66
# File 'lib/right_agent/exceptions.rb', line 64

def server
  @server
end