Raise
Statement
Causes a run-time error known as an exception.
Syntax
Raise [ expression ]
Parts
expression
- Usually mandatory name of a class or an object reference.
- Optional when put in one of the blocks
Catch
of the statementTry…Catch…Finally
.
Instructions
TODO
Examples
Raise Exception("An exception occured")