C# 클래스 YAMP.Exceptions.YAMPArgumentRangeException

This class should be used if an argument is out of range.
상속: YAMPRuntimeException
파일 보기 프로젝트 열기: FlorianRappl/YAMP

공개 메소드들

메소드 설명
YAMPArgumentRangeException ( String parameterName ) : System

Creates a new instance of the range exception.

YAMPArgumentRangeException ( String parameterName, Double lowerBound ) : System

Creates a new instance of the range exception.

YAMPArgumentRangeException ( String parameterName, Double lowerBound, Double upperBound ) : System

Creates a new instance of the range exception.

YAMPArgumentRangeException ( String parameterName, String boundaries ) : System

Creates a new instance of the range exception.

메소드 상세

YAMPArgumentRangeException() 공개 메소드

Creates a new instance of the range exception.
public YAMPArgumentRangeException ( String parameterName ) : System
parameterName String The parameter where this happened.
리턴 System

YAMPArgumentRangeException() 공개 메소드

Creates a new instance of the range exception.
public YAMPArgumentRangeException ( String parameterName, Double lowerBound ) : System
parameterName String The parameter where this happened.
lowerBound Double The lower bound.
리턴 System

YAMPArgumentRangeException() 공개 메소드

Creates a new instance of the range exception.
public YAMPArgumentRangeException ( String parameterName, Double lowerBound, Double upperBound ) : System
parameterName String The parameter where this happened.
lowerBound Double The lower bound.
upperBound Double The upper bound.
리턴 System

YAMPArgumentRangeException() 공개 메소드

Creates a new instance of the range exception.
public YAMPArgumentRangeException ( String parameterName, String boundaries ) : System
parameterName String The parameter where this happened.
boundaries String A string expressing the boundaries.
리턴 System