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
ExceptionThe 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
SerializationInfoThe System.Runtime.Serialization.SerializationInfo that holds the serialized object data about the exception being thrown.
context
StreamingContextThe 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
stringThe 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)