C# Класс Grasp.Compilation.CalculationCycleException

Indicates a set of calculations contains a cycle
Наследование: System.Exception
Показать файл Открыть проект

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

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

Описание методов

CalculationCycleException() публичный Метод

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
Результат System

CalculationCycleException() публичный Метод

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
Результат System

CalculationCycleException() публичный Метод

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
Результат System