Table of Contents

Class WorkflowAlreadyStartedException

Namespace
Temporalio.Exceptions
Assembly
Temporalio.dll

Exception thrown by client when attempting to start a workflow that was already started.

public class WorkflowAlreadyStartedException : FailureException, ISerializable
Inheritance
WorkflowAlreadyStartedException
Implements
Inherited Members

Constructors

WorkflowAlreadyStartedException(string, string, string)

Initializes a new instance of the WorkflowAlreadyStartedException class.

public WorkflowAlreadyStartedException(string message, string workflowId, string runId)

Parameters

message string

Error message.

workflowId string

Already started workflow ID.

runId string

Already started run ID.

Properties

RunId

Gets the run ID that was already started.

public string RunId { get; }

Property Value

string

WorkflowId

Gets the workflow ID that was already started.

public string WorkflowId { get; }

Property Value

string