Exception: Ice::RequestFailedException

Inherits:
LocalException show all
Defined in:
lib/Ice/LocalException.rb

Constant Summary collapse

ICE_TYPE =
T_RequestFailedException

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Exception

#ice_name, #inspect

Constructor Details

#initialize(id = ::Ice::Identity.new, facet = '', operation = '') ⇒ RequestFailedException

Returns a new instance of RequestFailedException.



397
398
399
400
401
# File 'lib/Ice/LocalException.rb', line 397

def initialize(id=::Ice::Identity.new, facet='', operation='')
    @id = id
    @facet = facet
    @operation = operation
end

Instance Attribute Details

#facetObject

Returns the value of attribute facet.



407
408
409
# File 'lib/Ice/LocalException.rb', line 407

def facet
  @facet
end

#idObject

Returns the value of attribute id.



407
408
409
# File 'lib/Ice/LocalException.rb', line 407

def id
  @id
end

#operationObject

Returns the value of attribute operation.



407
408
409
# File 'lib/Ice/LocalException.rb', line 407

def operation
  @operation
end

Instance Method Details

#to_sObject



403
404
405
# File 'lib/Ice/LocalException.rb', line 403

def to_s
    'Ice::RequestFailedException'
end