Raise

A RAISE statement without an argument has the form:

    RAISE e

where e is an exception that takes no argument. The outcome of the statement is the exception e. A RAISE statement with an argument has the form:

    RAISE e(x)

where e is an exception that takes an argument and x is an expression assignable to e's argument type. The outcome is the exception e paired with the argument x.

Last modified on Wed Apr  3 09:38:59 PST 1996 by heydon
     modified on Mon Apr 18 14:06:00 PDT 1994 by kalsow