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

Class to use for invalid arguments (type-wise or value-wise).
Наследование: YAMPRuntimeException
Показать файл Открыть проект

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

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