C# Class BuildLight.Core.CodeContracts.PreconditionException

Inheritance: System.Exception
Datei anzeigen Open project: SouthsideSoftware/BuildLight

Public Methods

Method Description
PreconditionException ( ) : System

Default constructor

PreconditionException ( string message ) : System

Constructor with error message.

PreconditionException ( string message, Exception inner ) : System

Constructior with error message and inner exception.

Protected Methods

Method Description
PreconditionException ( SerializationInfo info, StreamingContext context ) : System

Constructor used in serialization.

Method Details

PreconditionException() public method

Default constructor
public PreconditionException ( ) : System
return System

PreconditionException() protected method

Constructor used in serialization.
protected PreconditionException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo Serialization information.
context System.Runtime.Serialization.StreamingContext Serialization context.
return System

PreconditionException() public method

Constructor with error message.
public PreconditionException ( string message ) : System
message string The error message.
return System

PreconditionException() public method

Constructior with error message and inner exception.
public PreconditionException ( string message, Exception inner ) : System
message string The error message.
inner System.Exception The inner exception.
return System