C# Class BuildLight.Core.CodeContracts.PreconditionException

Inheritance: System.Exception
Afficher le fichier Open project: SouthsideSoftware/BuildLight

Méthodes publiques

Méthode 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.

Méthodes protégées

Méthode Description
PreconditionException ( SerializationInfo info, StreamingContext context ) : System

Constructor used in serialization.

Method Details

PreconditionException() public méthode

Default constructor
public PreconditionException ( ) : System
Résultat System

PreconditionException() protected méthode

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.
Résultat System

PreconditionException() public méthode

Constructor with error message.
public PreconditionException ( string message ) : System
message string The error message.
Résultat System

PreconditionException() public méthode

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.
Résultat System