Exception: Odin::Transform::TransformEngine::TransformAbortError
- Inherits:
-
StandardError
- Object
- StandardError
- Odin::Transform::TransformEngine::TransformAbortError
- Defined in:
- lib/odin/transform/transform_engine.rb
Overview
Execution guard abort (fuel, timeout, or depth). Not downgraded by the onError policy; the execute boundary surfaces it as a failed result.
Instance Attribute Summary collapse
-
#transform_error ⇒ Object
readonly
Returns the value of attribute transform_error.
Instance Method Summary collapse
-
#initialize(transform_error) ⇒ TransformAbortError
constructor
A new instance of TransformAbortError.
Constructor Details
#initialize(transform_error) ⇒ TransformAbortError
Returns a new instance of TransformAbortError.
64 65 66 67 |
# File 'lib/odin/transform/transform_engine.rb', line 64 def initialize(transform_error) @transform_error = transform_error super(transform_error.) end |
Instance Attribute Details
#transform_error ⇒ Object (readonly)
Returns the value of attribute transform_error.
62 63 64 |
# File 'lib/odin/transform/transform_engine.rb', line 62 def transform_error @transform_error end |