Table of Contents

Class OrchestrationFrameworkException

Namespace
DurableTask.Core.Exceptions
Assembly
DurableTask.Core.dll

Represents errors created by the orchestration framework

public class OrchestrationFrameworkException : Exception, ISerializable
Inheritance
OrchestrationFrameworkException
Implements
Inherited Members

Constructors

OrchestrationFrameworkException()

Initializes a new instance of the OrchestrationFrameworkException class.

public OrchestrationFrameworkException()

OrchestrationFrameworkException(Exception)

Initializes an new instance of the OrchestrationFrameworkException class with a specified inner exception

public OrchestrationFrameworkException(Exception innerException)

Parameters

innerException Exception

The exception that is the cause of the current exception, or a null reference if no inner exception is specified.

OrchestrationFrameworkException(SerializationInfo, StreamingContext)

Initializes a new instance of the OrchestrationFrameworkException class with serialized data.

protected OrchestrationFrameworkException(SerializationInfo info, StreamingContext context)

Parameters

info SerializationInfo

The System.Runtime.Serialization.SerializationInfo that holds the serialized object data about the exception being thrown.

context StreamingContext

The System.Runtime.Serialization.StreamingContext that contains contextual information about the source or destination.

OrchestrationFrameworkException(string)

Initializes an new instance of the OrchestrationFrameworkException class with a specified error message

public OrchestrationFrameworkException(string message)

Parameters

message string

The message that describes the error.

OrchestrationFrameworkException(string, Exception)

Initializes an new instance of the OrchestrationFrameworkException class with a specified error message and a reference to the inner exception that is the cause of this exception.

public OrchestrationFrameworkException(string message, Exception innerException)

Parameters

message string

The message that describes the error.

innerException Exception

The exception that is the cause of the current exception, or a null reference if no inner exception is specified.