C# Класс YAMP.Exceptions.YAMPArgumentRangeException

This class should be used if an argument is out of range.
Наследование: YAMPRuntimeException
Показать файл Открыть проект

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

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