Exception: SpotFlow::ExecutionError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/spot_flow/execution.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#executionObject (readonly)

Returns the value of attribute execution.



315
316
317
# File 'lib/spot_flow/execution.rb', line 315

def execution
  @execution
end