Exception: IceGrid::NodeUnreachableException
- Inherits:
-
Ice::UserException
- Object
- StandardError
- Ice::Exception
- Ice::UserException
- IceGrid::NodeUnreachableException
- Defined in:
- lib/IceGrid/Exception.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#reason ⇒ Object
Returns the value of attribute reason.
Instance Method Summary collapse
-
#initialize(name = '', reason = '') ⇒ NodeUnreachableException
constructor
A new instance of NodeUnreachableException.
- #to_s ⇒ Object
Methods inherited from Ice::Exception
Constructor Details
#initialize(name = '', reason = '') ⇒ NodeUnreachableException
Returns a new instance of NodeUnreachableException.
193 194 195 196 |
# File 'lib/IceGrid/Exception.rb', line 193 def initialize(name='', reason='') @name = name @reason = reason end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
202 203 204 |
# File 'lib/IceGrid/Exception.rb', line 202 def name @name end |
#reason ⇒ Object
Returns the value of attribute reason.
202 203 204 |
# File 'lib/IceGrid/Exception.rb', line 202 def reason @reason end |
Instance Method Details
#to_s ⇒ Object
198 199 200 |
# File 'lib/IceGrid/Exception.rb', line 198 def to_s '::IceGrid::NodeUnreachableException' end |