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 statement Try…Catch…Finally.

Instructions

TODO

Examples

Raise Exception("An exception occured")

See also