C# 클래스 Grasp.Compilation.CalculationCycleException

Indicates a set of calculations contains a cycle
상속: System.Exception
파일 보기 프로젝트 열기: bwatts/Grasp

공개 메소드들

메소드 설명
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