Exception: JIJI::FatalError
- Inherits:
-
StandardError
- Object
- StandardError
- JIJI::FatalError
- Defined in:
- lib/jiji/error.rb
Overview
致命的エラー
Instance Attribute Summary collapse
-
#code ⇒ Object
readonly
Returns the value of attribute code.
Instance Method Summary collapse
-
#initialize(code, message = "") ⇒ FatalError
constructor
A new instance of FatalError.
Constructor Details
#initialize(code, message = "") ⇒ FatalError
Returns a new instance of FatalError.
5 6 7 8 |
# File 'lib/jiji/error.rb', line 5 def initialize( code, ="" ) super( ) @code = code end |
Instance Attribute Details
#code ⇒ Object (readonly)
Returns the value of attribute code.
9 10 11 |
# File 'lib/jiji/error.rb', line 9 def code @code end |