PostconditionException Constructor (String, Exception)

CuttingEdge.Conditions

Initializes a new instance of the PostconditionException class.

Namespace:  CuttingEdge.Conditions
Assembly:  CuttingEdge.Conditions (in CuttingEdge.Conditions.dll)

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	message As String, _
	inner As Exception _
)
C#
public PostconditionException(
	string message,
	Exception inner
)
Visual C++
public:
PostconditionException(
	String^ message, 
	Exception^ inner
)
JavaScript
CuttingEdge.Conditions.PostconditionException = function(message, inner);

Parameters

message
Type: System..::.String
The message that describes the error.
inner
Type: System..::.Exception
The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.

See Also