C# Class Arc.Infrastructure.Validation.ValidationException

Inheritance: System.Exception
Datei anzeigen Open project: marektihkan/Arc Class Usage Examples

Public Methods

Method Description
ValidationException ( ) : System

Initializes a new instance of the ValidationException class.

ValidationException ( IValidationResults results ) : System

Initializes a new instance of the ValidationException class.

ValidationException ( string message ) : System

Initializes a new instance of the ValidationException class.

ValidationException ( string message, Exception innerException ) : System

Initializes a new instance of the ValidationException class.

Protected Methods

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

Initializes a new instance of the ValidationException class.

Method Details

ValidationException() public method

Initializes a new instance of the ValidationException class.
public ValidationException ( ) : System
return System

ValidationException() public method

Initializes a new instance of the ValidationException class.
public ValidationException ( IValidationResults results ) : System
results IValidationResults The results.
return System

ValidationException() protected method

Initializes a new instance of the ValidationException class.
/// The parameter is null. /// /// The class name is null or is zero (0). ///
protected ValidationException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo The that holds the serialized object data about the exception being thrown.
context System.Runtime.Serialization.StreamingContext The that contains contextual information about the source or destination.
return System

ValidationException() public method

Initializes a new instance of the ValidationException class.
public ValidationException ( string message ) : System
message string The message.
return System

ValidationException() public method

Initializes a new instance of the ValidationException class.
public ValidationException ( string message, Exception innerException ) : System
message string The message.
innerException System.Exception The inner exception.
return System