Exception: Ice::SecurityException
- Inherits:
-
LocalException
- Object
- StandardError
- Exception
- LocalException
- Ice::SecurityException
- Defined in:
- lib/Ice/LocalException.rb
Constant Summary collapse
- ICE_TYPE =
T_SecurityException
Instance Attribute Summary collapse
-
#reason ⇒ Object
Returns the value of attribute reason.
Instance Method Summary collapse
-
#initialize(reason = '') ⇒ SecurityException
constructor
A new instance of SecurityException.
- #to_s ⇒ Object
Methods inherited from Exception
Constructor Details
#initialize(reason = '') ⇒ SecurityException
Returns a new instance of SecurityException.
1040 1041 1042 |
# File 'lib/Ice/LocalException.rb', line 1040 def initialize(reason='') @reason = reason end |
Instance Attribute Details
#reason ⇒ Object
Returns the value of attribute reason.
1048 1049 1050 |
# File 'lib/Ice/LocalException.rb', line 1048 def reason @reason end |
Instance Method Details
#to_s ⇒ Object
1044 1045 1046 |
# File 'lib/Ice/LocalException.rb', line 1044 def to_s 'Ice::SecurityException' end |