Exception: Ice::NoValueFactoryException

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

Instance Attribute Summary collapse

Attributes inherited from ProtocolException

#reason

Instance Method Summary collapse

Methods inherited from Exception

#ice_id, #ice_name, #inspect

Constructor Details

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

Returns a new instance of NoValueFactoryException.



896
897
898
899
# File 'lib/Ice/LocalException.rb', line 896

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

Instance Attribute Details

#typeObject

Returns the value of attribute type.



905
906
907
# File 'lib/Ice/LocalException.rb', line 905

def type
  @type
end

Instance Method Details

#to_sObject



901
902
903
# File 'lib/Ice/LocalException.rb', line 901

def to_s
    '::Ice::NoValueFactoryException'
end