Exception: Ice::RequestFailedException

Inherits:
DispatchException show all
Defined in:
ruby/Ice/LocalExceptions.rb

Instance Attribute Summary collapse

Attributes inherited from DispatchException

#replyStatus

Instance Method Summary collapse

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

#facetObject (readonly)

Returns the value of attribute facet.



28
29
30
# File 'ruby/Ice/LocalExceptions.rb', line 28

def facet
  @facet
end

#idObject (readonly)

Returns the value of attribute id.



28
29
30
# File 'ruby/Ice/LocalExceptions.rb', line 28

def id
  @id
end

#operationObject (readonly)

Returns the value of attribute operation.



28
29
30
# File 'ruby/Ice/LocalExceptions.rb', line 28

def operation
  @operation
end