Exception: Ice::RequestFailedException
- Inherits:
-
LocalException
- Object
- StandardError
- Exception
- LocalException
- Ice::RequestFailedException
- Defined in:
- lib/Ice/LocalException.rb
Direct Known Subclasses
FacetNotExistException, ObjectNotExistException, OperationNotExistException
Instance Attribute Summary collapse
-
#facet ⇒ Object
Returns the value of attribute facet.
-
#id ⇒ Object
Returns the value of attribute id.
-
#operation ⇒ Object
Returns the value of attribute operation.
Instance Method Summary collapse
-
#initialize(id = ::Ice::Identity.new, facet = '', operation = '') ⇒ RequestFailedException
constructor
A new instance of RequestFailedException.
- #to_s ⇒ Object
Methods inherited from Exception
Constructor Details
#initialize(id = ::Ice::Identity.new, facet = '', operation = '') ⇒ RequestFailedException
Returns a new instance of RequestFailedException.
370 371 372 373 374 |
# File 'lib/Ice/LocalException.rb', line 370 def initialize(id=::Ice::Identity.new, facet='', operation='') @id = id @facet = facet @operation = operation end |
Instance Attribute Details
#facet ⇒ Object
Returns the value of attribute facet.
380 381 382 |
# File 'lib/Ice/LocalException.rb', line 380 def facet @facet end |
#id ⇒ Object
Returns the value of attribute id.
380 381 382 |
# File 'lib/Ice/LocalException.rb', line 380 def id @id end |
#operation ⇒ Object
Returns the value of attribute operation.
380 381 382 |
# File 'lib/Ice/LocalException.rb', line 380 def operation @operation end |
Instance Method Details
#to_s ⇒ Object
376 377 378 |
# File 'lib/Ice/LocalException.rb', line 376 def to_s '::Ice::RequestFailedException' end |