Exception: IceGrid::ServerStartException

Inherits:
Ice::UserException show all
Defined in:
lib/IceGrid/Exception.rb

Constant Summary collapse

ICE_TYPE =
T_ServerStartException

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Ice::Exception

#ice_name, #inspect

Constructor Details

#initialize(id = '', reason = '') ⇒ ServerStartException

Returns a new instance of ServerStartException.



64
65
66
67
# File 'lib/IceGrid/Exception.rb', line 64

def initialize(id='', reason='')
    @id = id
    @reason = reason
end

Instance Attribute Details

#idObject

Returns the value of attribute id.



73
74
75
# File 'lib/IceGrid/Exception.rb', line 73

def id
  @id
end

#reasonObject

Returns the value of attribute reason.



73
74
75
# File 'lib/IceGrid/Exception.rb', line 73

def reason
  @reason
end

Instance Method Details

#to_sObject



69
70
71
# File 'lib/IceGrid/Exception.rb', line 69

def to_s
    'IceGrid::ServerStartException'
end