10.2. raise statements

Example 10-2. Example:

raise x
raise_statement ==>
        raise expression

Exceptions are explicitly raised by raise statements. The expression is evaluated to obtain the exception object. No statements may follow a raise statement in a statement list because they can never be executed.