Exception: SpotFlow::ExecutionError
- Inherits:
-
StandardError
- Object
- StandardError
- SpotFlow::ExecutionError
- Defined in:
- lib/spot_flow/execution.rb
Instance Attribute Summary collapse
-
#execution ⇒ Object
readonly
Returns the value of attribute execution.
Instance Method Summary collapse
-
#initialize(msg, execution: nil) ⇒ ExecutionError
constructor
A new instance of ExecutionError.
Constructor Details
#initialize(msg, execution: nil) ⇒ ExecutionError
Returns a new instance of ExecutionError.
317 318 319 320 |
# File 'lib/spot_flow/execution.rb', line 317 def initialize(msg, execution: nil) @execution = execution super(msg) end |
Instance Attribute Details
#execution ⇒ Object (readonly)
Returns the value of attribute execution.
315 316 317 |
# File 'lib/spot_flow/execution.rb', line 315 def execution @execution end |