Exception: Ice::RequestFailedException
- Inherits:
-
DispatchException
- Object
- StandardError
- Exception
- LocalException
- DispatchException
- Ice::RequestFailedException
- Defined in:
- ruby/Ice/LocalExceptions.rb
Direct Known Subclasses
FacetNotExistException, ObjectNotExistException, OperationNotExistException
Instance Attribute Summary collapse
-
#facet ⇒ Object
readonly
Returns the value of attribute facet.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#operation ⇒ Object
readonly
Returns the value of attribute operation.
Attributes inherited from DispatchException
Instance Method Summary collapse
-
#initialize(replyStatus, id, facet, operation, msg) ⇒ RequestFailedException
constructor
A new instance of RequestFailedException.
Constructor Details
#initialize(replyStatus, id, facet, operation, msg) ⇒ RequestFailedException
Returns a new instance of RequestFailedException.
21 22 23 24 25 26 |
# File 'ruby/Ice/LocalExceptions.rb', line 21 def initialize(replyStatus, id, facet, operation, msg) super(replyStatus, msg) @id = id @facet = facet @operation = operation end |
Instance Attribute Details
#facet ⇒ Object (readonly)
Returns the value of attribute facet.
28 29 30 |
# File 'ruby/Ice/LocalExceptions.rb', line 28 def facet @facet end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
28 29 30 |
# File 'ruby/Ice/LocalExceptions.rb', line 28 def id @id end |
#operation ⇒ Object (readonly)
Returns the value of attribute operation.
28 29 30 |
# File 'ruby/Ice/LocalExceptions.rb', line 28 def operation @operation end |