Exception: Axn::Internal::EarlyCompletion
- Inherits:
-
StandardError
- Object
- StandardError
- Axn::Internal::EarlyCompletion
- Defined in:
- lib/axn/exceptions.rb
Overview
Internal only -- rescued before Axn::Result is returned
Instance Attribute Summary collapse
-
#standalone ⇒ Object
readonly
Returns the value of attribute standalone.
Instance Method Summary collapse
-
#initialize(message = nil, standalone: false) ⇒ EarlyCompletion
constructor
A new instance of EarlyCompletion.
Constructor Details
#initialize(message = nil, standalone: false) ⇒ EarlyCompletion
Returns a new instance of EarlyCompletion.
91 92 93 94 |
# File 'lib/axn/exceptions.rb', line 91 def initialize( = nil, standalone: false) @standalone = standalone super() end |
Instance Attribute Details
#standalone ⇒ Object (readonly)
Returns the value of attribute standalone.
89 90 91 |
# File 'lib/axn/exceptions.rb', line 89 def standalone @standalone end |