Exception: AWS::Flow::ChildWorkflowTimedOutException

Inherits:
ChildWorkflowException show all
Defined in:
lib/aws/decider/exceptions.rb

Instance Attribute Summary

Attributes inherited from FlowException

#details, #reason

Instance Method Summary collapse

Methods inherited from ChildWorkflowException

#detail_termination

Constructor Details

#initialize(event_id, workflow_execution, workflow_type) ⇒ ChildWorkflowTimedOutException

Returns a new instance of ChildWorkflowTimedOutException.



73
74
75
76
77
# File 'lib/aws/decider/exceptions.rb', line 73

def initialize(event_id, workflow_execution, workflow_type)
  @reason = "WF exception timed out"
  @detail = detail_termination("Timed out", event_id, workflow_execution, workflow_type)

end