Exception: Ice::NotRegisteredException

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(kindOfObject, id, msg) ⇒ NotRegisteredException

Returns a new instance of NotRegisteredException.



145
146
147
148
149
# File 'ruby/Ice/LocalExceptions.rb', line 145

def initialize(kindOfObject, id, msg)
    super(msg)
    @kindOfObject = kindOfObject
    @id = id
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



151
152
153
# File 'ruby/Ice/LocalExceptions.rb', line 151

def id
  @id
end

#kindOfObjectObject (readonly)

Returns the value of attribute kindOfObject.



151
152
153
# File 'ruby/Ice/LocalExceptions.rb', line 151

def kindOfObject
  @kindOfObject
end