C# 클래스 YalvLib.Exceptions.NotValidValueException

Implements a simple exception class that indicates a wrong parameter value usage when being thrown.
상속: Exception
파일 보기 프로젝트 열기: Dirkster99/YalvLib

공개 메소드들

메소드 설명
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