C# Class YalvLib.Exceptions.NotValidValueException

Implements a simple exception class that indicates a wrong parameter value usage when being thrown.
Inheritance: Exception
Mostra file Open project: Dirkster99/YalvLib

Public Methods

Method Description
NotValidValueException ( ) : System

Default class constructor.

NotValidValueException ( string message ) : System

Class constructor from string message parameter which describes the exception in detail.

NotValidValueException ( string message, Exception inner ) : System

Class constructor from string message parameter and inner exception to describe the thrown exception in detail.

Protected Methods

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

Protected class constructor from SerializationInfo and StreamingContext to describe the context of the exception thrown in detail.

Method Details

NotValidValueException() public method

Default class constructor.
public NotValidValueException ( ) : System
return System

NotValidValueException() protected method

Protected class constructor from SerializationInfo and StreamingContext to describe the context of the exception thrown in detail.
protected NotValidValueException ( SerializationInfo info, StreamingContext context ) : System
info SerializationInfo
context StreamingContext
return System

NotValidValueException() public method

Class constructor from string message parameter which describes the exception in detail.
public NotValidValueException ( string message ) : System
message string
return System

NotValidValueException() public method

Class constructor from string message parameter and inner exception to describe the thrown exception in detail.
public NotValidValueException ( string message, Exception inner ) : System
message string
inner Exception
return System