class Temporalio::Error::ChildWorkflowError

Error raised on child workflow failure.

def initialize(

@!visibility private
def initialize(
  message,
  namespace:,
  workflow_id:,
  run_id:,
  workflow_type:,
  initiated_event_id:,
  started_event_id:,
  retry_state:
)
  super(message)
  @namespace = namespace
  @workflow_id = workflow_id
  @run_id = run_id
  @workflow_type = workflow_type
  @initiated_event_id = initiated_event_id
  @started_event_id = started_event_id
  @retry_state = retry_state
end