C# Класс YalvLib.Exceptions.NotValidValueException

Implements a simple exception class that indicates a wrong parameter value usage when being thrown.
Наследование: Exception
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Защищенные методы

Метод Описание
NotValidValueException ( SerializationInfo info, StreamingContext context ) : System

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

Описание методов

NotValidValueException() публичный Метод

Default class constructor.
public NotValidValueException ( ) : System
Результат System

NotValidValueException() защищенный Метод

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
Результат System

NotValidValueException() публичный Метод

Class constructor from string message parameter which describes the exception in detail.
public NotValidValueException ( string message ) : System
message string
Результат System

NotValidValueException() публичный Метод

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
Результат System