Raise
From REAL Software Documentation
Method
The Raise statement is used to raise an exception to the next level in the calling chain.
Syntax
Raise expression
Expression must evaluate to an object that is a subclass of RuntimeException — and will be the object that is passed to any exception handlers.
Examples
Here are example of how to raise an exception
Raise New RuntimeException
or
See Also
Function statement; RuntimeException class; Exception, Try statements.
