Exception: IceGrid::FileNotAvailableException

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

Constant Summary collapse

ICE_TYPE =
T_FileNotAvailableException

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Ice::Exception

#ice_name, #inspect

Constructor Details

#initialize(reason = '') ⇒ FileNotAvailableException

Returns a new instance of FileNotAvailableException.



388
389
390
# File 'lib/IceGrid/Exception.rb', line 388

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

Instance Attribute Details

#reasonObject

Returns the value of attribute reason.



396
397
398
# File 'lib/IceGrid/Exception.rb', line 396

def reason
  @reason
end

Instance Method Details

#to_sObject



392
393
394
# File 'lib/IceGrid/Exception.rb', line 392

def to_s
    'IceGrid::FileNotAvailableException'
end