exception documentation

Thrown by a client or workflow when a workflow execution has already started.

Method __init__ Initialize a workflow already started error.
Instance Variable run_id Run ID of the already-started workflow if this was raised by the client.
Instance Variable workflow_id ID of the already-started workflow.
Instance Variable workflow_type Workflow type name of the already-started workflow.

Inherited from FailureError:

Property failure Underlying protobuf failure object.
Property message Message.
Instance Variable _failure Undocumented
Instance Variable _message Undocumented

Inherited from TemporalError (via FailureError):

Property cause Cause of the exception.
def __init__(self, workflow_id: str, workflow_type: str, *, run_id: Optional[str] = None): (source)

Initialize a workflow already started error.

Run ID of the already-started workflow if this was raised by the client.

workflow_id = (source)

ID of the already-started workflow.

workflow_type = (source)

Workflow type name of the already-started workflow.