C# Class Grasp.Compilation.CalculationCycleException

Indicates a set of calculations contains a cycle
Inheritance: System.Exception
Mostra file Open project: bwatts/Grasp

Public Methods

Method Description
CalculationCycleException ( IEnumerable context, Calculation repeatedCalculation ) : System

Initializes an exception with the specified calculation context and repeated calculation

CalculationCycleException ( IEnumerable context, Calculation repeatedCalculation, string message ) : System

Initializes an exception with the specified calculation contextm, repeated calculation, and message

CalculationCycleException ( IEnumerable context, Calculation repeatedCalculation, string message, Exception inner ) : System

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

Method Details

CalculationCycleException() public method

Initializes an exception with the specified calculation context and repeated calculation
public CalculationCycleException ( IEnumerable context, Calculation repeatedCalculation ) : System
context IEnumerable The calculations above the repeated one from the root
repeatedCalculation Calculation The calculation repeated in the context of the root
return System

CalculationCycleException() public method

Initializes an exception with the specified calculation contextm, repeated calculation, and message
public CalculationCycleException ( IEnumerable context, Calculation repeatedCalculation, string message ) : System
context IEnumerable The calculations above the repeated one from the root
repeatedCalculation Calculation The calculation repeated in the context of the root
message string The message that describes the error
return System

CalculationCycleException() public method

Initializes an exception with the specified calculation context, repeated calculation, message, and inner exception
public CalculationCycleException ( IEnumerable context, Calculation repeatedCalculation, string message, Exception inner ) : System
context IEnumerable The calculations above the repeated one from the root
repeatedCalculation Calculation The calculation repeated in the context of the root
message string The message that describes the error
inner System.Exception The exception that is the cause of this exception
return System