C# Class CsDebugScript.Exceptions.WrongCodeTypeException

Exception that is thrown when variable of unexpected code type has been given as an argument.
Inheritance: System.Exception
Mostra file Open project: southpolenator/WinDbgCs

Public Methods

Method Description
WrongCodeTypeException ( CodeType codeType, string argumentName, string expectedText ) : System

Initializes a new instance of the WrongCodeTypeException class.

WrongCodeTypeException ( Variable variable, string argumentName, string expectedText ) : System

Initializes a new instance of the WrongCodeTypeException class.

Method Details

WrongCodeTypeException() public method

Initializes a new instance of the WrongCodeTypeException class.
public WrongCodeTypeException ( CodeType codeType, string argumentName, string expectedText ) : System
codeType CodeType The code type.
argumentName string Name of the argument.
expectedText string The expected text.
return System

WrongCodeTypeException() public method

Initializes a new instance of the WrongCodeTypeException class.
public WrongCodeTypeException ( Variable variable, string argumentName, string expectedText ) : System
variable Variable The variable.
argumentName string Name of the argument.
expectedText string The expected text.
return System