Table of Contents

Class NexusOperationFailedException

Namespace
Temporalio.Exceptions
Assembly
Temporalio.dll

Exception thrown when a standalone Nexus operation has failed while waiting for the result.

public class NexusOperationFailedException : TemporalException, ISerializable
Inheritance
NexusOperationFailedException
Implements
Inherited Members

Remarks

WARNING: Standalone Nexus operations are experimental.

Constructors

NexusOperationFailedException(string, string?, Exception?)

Initializes a new instance of the NexusOperationFailedException class.

public NexusOperationFailedException(string operationId, string? runId, Exception? inner)

Parameters

operationId string

Operation ID.

runId string

Operation run ID.

inner Exception

Cause of the exception.

Properties

OperationId

Gets the operation ID.

public string OperationId { get; }

Property Value

string

RunId

Gets the operation run ID, if known.

public string? RunId { get; }

Property Value

string