C# Class Grasp.Compilation.InvalidCalculationResultTypeException

Indiciates a calculation's result type is not assignable to its variable's output type
Inheritance: System.Exception
Mostra file Open project: bwatts/Grasp

Public Methods

Method Description
InvalidCalculationResultTypeException ( Calculation calculation ) : System

Initializes an exception with the specified calculation

InvalidCalculationResultTypeException ( Calculation calculation, string message ) : System

Initializes an exception with the specified calculation and message

InvalidCalculationResultTypeException ( Calculation calculation, string message, Exception inner ) : System

Initializes an exception with the specified calculation, message, and inner exception

Method Details

InvalidCalculationResultTypeException() public method

Initializes an exception with the specified calculation
public InvalidCalculationResultTypeException ( Calculation calculation ) : System
calculation Calculation
return System

InvalidCalculationResultTypeException() public method

Initializes an exception with the specified calculation and message
public InvalidCalculationResultTypeException ( Calculation calculation, string message ) : System
calculation Calculation
message string The message that describes the error
return System

InvalidCalculationResultTypeException() public method

Initializes an exception with the specified calculation, message, and inner exception
public InvalidCalculationResultTypeException ( Calculation calculation, string message, Exception inner ) : System
calculation Calculation
message string The message that describes the error
inner System.Exception The exception that is the cause of this exception
return System