Exception: Temporal::WorkflowExecutionAlreadyStartedFailure

Inherits:
ApiError
  • Object
show all
Defined in:
lib/temporal/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, run_id) ⇒ WorkflowExecutionAlreadyStartedFailure

Returns a new instance of WorkflowExecutionAlreadyStartedFailure.



50
51
52
53
# File 'lib/temporal/errors.rb', line 50

def initialize(message, run_id)
  super(message)
  @run_id = run_id
end

Instance Attribute Details

#run_idObject (readonly)

Returns the value of attribute run_id.



48
49
50
# File 'lib/temporal/errors.rb', line 48

def run_id
  @run_id
end