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
stringError message.
workflowId
stringAlready started workflow ID.
runId
stringAlready started run ID.
Properties
RunId
Gets the run ID that was already started.
public string RunId { get; }
Property Value
WorkflowId
Gets the workflow ID that was already started.
public string WorkflowId { get; }