Class WorkflowException
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
SerializationInfoThe SerializationInfo that holds the serialized object data about the exception being thrown.
context
StreamingContextThe StreamingContext that contains contextual information about the source or destination.
Exceptions
WorkflowException(string)
Initializes a new instance of the WorkflowException class with a specified error message.
public WorkflowException(string message)
Parameters
message
stringThe 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)