Exception: Ice::AlreadyRegisteredException

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

Overview

Other leaf local exceptions in alphabetical order.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(kindOfObject, id, msg) ⇒ AlreadyRegisteredException

Returns a new instance of AlreadyRegisteredException.



112
113
114
115
116
# File 'ruby/Ice/LocalExceptions.rb', line 112

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

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



118
119
120
# File 'ruby/Ice/LocalExceptions.rb', line 118

def id
  @id
end

#kindOfObjectObject (readonly)

Returns the value of attribute kindOfObject.



118
119
120
# File 'ruby/Ice/LocalExceptions.rb', line 118

def kindOfObject
  @kindOfObject
end