Property | Type | Description | |
---|---|---|---|
_Message | string |
Method | Description | |
---|---|---|
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.
|
public static Always ( string Report ) : void | ||
Report | string | Message to report. |
return | void |
public static If ( bool Test, string Report ) : void | ||
Test | bool | Must be true or exception is thrown. |
Report | string | Message to report. |
return | void |
public static IfNot ( bool Test, string Report ) : void | ||
Test | bool | Must be false or exception is thrown. |
Report | string | Message to report. |
return | void |