Table of Contents

Class PreconditionException

Namespace
DCR
Assembly
DCR.Workflow.dll

Represents an exception that is thrown when a precondition check fails.

public class PreconditionException : Exception, ISerializable
Inheritance
PreconditionException
Implements
Inherited Members
Extension Methods

Constructors

PreconditionException()

Initializes a new instance of the PreconditionException class.

public PreconditionException()

PreconditionException(string)

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

public PreconditionException(string message)

Parameters

message string

The error message that explains the reason for the exception.

PreconditionException(string, Exception)

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

public PreconditionException(string message, Exception inner)

Parameters

message string

The error message that explains the reason for the exception.

inner Exception

The exception that is the cause of the current exception.