Exception: Ice::NotRegisteredException
- Inherits:
-
LocalException
- Object
- StandardError
- Exception
- LocalException
- Ice::NotRegisteredException
- Defined in:
- lib/Ice/LocalException.rb
Constant Summary collapse
- ICE_TYPE =
T_NotRegisteredException
Instance Attribute Summary collapse
-
#id ⇒ Object
Returns the value of attribute id.
-
#kindOfObject ⇒ Object
Returns the value of attribute kindOfObject.
Instance Method Summary collapse
-
#initialize(kindOfObject = '', id = '') ⇒ NotRegisteredException
constructor
A new instance of NotRegisteredException.
- #to_s ⇒ Object
Methods inherited from Exception
Constructor Details
#initialize(kindOfObject = '', id = '') ⇒ NotRegisteredException
Returns a new instance of NotRegisteredException.
100 101 102 103 |
# File 'lib/Ice/LocalException.rb', line 100 def initialize(kindOfObject='', id='') @kindOfObject = kindOfObject @id = id end |
Instance Attribute Details
#id ⇒ Object
Returns the value of attribute id.
109 110 111 |
# File 'lib/Ice/LocalException.rb', line 109 def id @id end |
#kindOfObject ⇒ Object
Returns the value of attribute kindOfObject.
109 110 111 |
# File 'lib/Ice/LocalException.rb', line 109 def kindOfObject @kindOfObject end |
Instance Method Details
#to_s ⇒ Object
105 106 107 |
# File 'lib/Ice/LocalException.rb', line 105 def to_s 'Ice::NotRegisteredException' end |