C# 클래스 Goedel.Throw

Placeholder exception class.
상속: System.Exception
파일 보기 프로젝트 열기: hallambaker/Mathematical-Mesh

보호된 프로퍼티들

프로퍼티 타입 설명
_Message string

공개 메소드들

메소드 설명
Always ( string Report ) : void

Throw an exception.

If ( bool Test, string Report ) : void

Throw an exception if the specified test is not met.

IfNot ( bool Test, string Report ) : void

Throw an exception if the specified test is met.

Throw ( string Message ) : System

Create an exception with the specified message.

메소드 상세

Always() 공개 정적인 메소드

Throw an exception.
public static Always ( string Report ) : void
Report string Message to report.
리턴 void

If() 공개 정적인 메소드

Throw an exception if the specified test is not met.
public static If ( bool Test, string Report ) : void
Test bool Must be true or exception is thrown.
Report string Message to report.
리턴 void

IfNot() 공개 정적인 메소드

Throw an exception if the specified test is met.
public static IfNot ( bool Test, string Report ) : void
Test bool Must be false or exception is thrown.
Report string Message to report.
리턴 void

Throw() 공개 메소드

Create an exception with the specified message.
public Throw ( string Message ) : System
Message string
리턴 System

프로퍼티 상세

_Message 보호되어 있는 프로퍼티

The private message data.
protected string _Message
리턴 string