Exception: Ice::NoObjectFactoryException

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

Constant Summary collapse

ICE_TYPE =
T_NoObjectFactoryException

Instance Attribute Summary collapse

Attributes inherited from ProtocolException

#reason

Instance Method Summary collapse

Methods inherited from Exception

#ice_name, #inspect

Constructor Details

#initialize(reason = '', type = '') ⇒ NoObjectFactoryException

Returns a new instance of NoObjectFactoryException.



938
939
940
941
# File 'lib/Ice/LocalException.rb', line 938

def initialize(reason='', type='')
    super(reason)
    @type = type
end

Instance Attribute Details

#typeObject

Returns the value of attribute type.



947
948
949
# File 'lib/Ice/LocalException.rb', line 947

def type
  @type
end

Instance Method Details

#to_sObject



943
944
945
# File 'lib/Ice/LocalException.rb', line 943

def to_s
    'Ice::NoObjectFactoryException'
end