Exception: PREP::Core::PrepError
- Inherits:
-
StandardError
- Object
- StandardError
- PREP::Core::PrepError
- Defined in:
- lib/core/prep.rb
Overview
PREP 用例外
帳票生成時に発生するあらゆる例外を補足して再発生させる際に利用
Instance Attribute Summary collapse
-
#original_error ⇒ Object
readonly
元々のエラー.
Instance Method Summary collapse
-
#initialize(error) ⇒ PrepError
constructor
A new instance of PrepError.
Constructor Details
#initialize(error) ⇒ PrepError
Returns a new instance of PrepError.
31 32 33 |
# File 'lib/core/prep.rb', line 31 def initialize(error) @original_error = error end |
Instance Attribute Details
#original_error ⇒ Object (readonly)
元々のエラー
29 30 31 |
# File 'lib/core/prep.rb', line 29 def original_error @original_error end |