C# 클래스 YAMP.Exceptions.YAMPArgumentInvalidException

Class to use for invalid arguments (type-wise or value-wise).
상속: YAMPRuntimeException
파일 보기 프로젝트 열기: FlorianRappl/YAMP

공개 메소드들

메소드 설명
YAMPArgumentInvalidException ( String function, Int32 argumentNumber ) : System

Creates a new argument invalid exception.

YAMPArgumentInvalidException ( String function, String argument ) : System

Creates a new argument invalid exception.

YAMPArgumentInvalidException ( String function, String argumentType, Int32 argumentNumber ) : System

Creates a new argument invalid exception.

YAMPArgumentInvalidException ( String function, String argumentType, String expectedType, Int32 argumentNumber ) : System

Creates a new argument invalid exception.

메소드 상세

YAMPArgumentInvalidException() 공개 메소드

Creates a new argument invalid exception.
public YAMPArgumentInvalidException ( String function, Int32 argumentNumber ) : System
function String The function where this happened.
argumentNumber System.Int32 The number of the argument.
리턴 System

YAMPArgumentInvalidException() 공개 메소드

Creates a new argument invalid exception.
public YAMPArgumentInvalidException ( String function, String argument ) : System
function String The function where this happened.
argument String The given argument.
리턴 System

YAMPArgumentInvalidException() 공개 메소드

Creates a new argument invalid exception.
public YAMPArgumentInvalidException ( String function, String argumentType, Int32 argumentNumber ) : System
function String The function where this happened.
argumentType String The type of argument.
argumentNumber System.Int32 The number of the argument.
리턴 System

YAMPArgumentInvalidException() 공개 메소드

Creates a new argument invalid exception.
public YAMPArgumentInvalidException ( String function, String argumentType, String expectedType, Int32 argumentNumber ) : System
function String The function where this happened.
argumentType String The actual type of argument.
expectedType String The expected type of argument.
argumentNumber System.Int32 The number of the argument.
리턴 System