Table of Contents

Class WorkflowException

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

The exception that is thrown when a workflow error occurs.

public class WorkflowException : Exception, ISerializable
Inheritance
WorkflowException
Implements
Derived
Inherited Members

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(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.