Class WorkflowException
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
messagestringThe 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)