Table of Contents

Class WorkflowException

Namespace
Acuit.Pinpoint.Workflows
Assembly
Acuit.Pinpoint.Workflows.dll

The exception that is thrown when a workflow error occurs.

[Serializable]
public class WorkflowException : Exception, ISerializable, _Exception
Inheritance
WorkflowException
Implements
Derived
Inherited Members
Extension Methods

Constructors

WorkflowException()

Initializes a new instance of the WorkflowException class with a default message similar to "Exception of type 'Acuit.Pinpoint.Workflows.Parameters.WorkflowException' was thrown."

public WorkflowException()

WorkflowException(SerializationInfo, StreamingContext)

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

protected WorkflowException(SerializationInfo info, StreamingContext context)

Parameters

info SerializationInfo

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

context StreamingContext

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

Exceptions

ArgumentNullException

info is null.

SerializationException

The class name is null or HResult is zero (0).

WorkflowException(string)

Initializes a new instance of the WorkflowException class with a specified error message.

public WorkflowException(string message)

Parameters

message string

The message that describes the error.

WorkflowException(string, Exception)

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

public WorkflowException(string message, Exception inner)

Parameters

message string

The message that describes the error.

inner Exception

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