HELP
Generates a user-defined error condition with
associated error number (escape code) and
text message.  (This object was formerly
called Escape.)

USE
Use Raise Error to stop execution of the
current UserObject and generate an error that
may be trapped by the error pin of an
enclosing UserObject or the main work area.
If the error is not trapped (by an error pin
on a UserObject) and the escape code is
non-zero, Raise Error stops the model and
generates an error dialog box.

LOCATION
Flow ==> Raise Error

OPEN VIEW PARAMETERS

Code - An error number; it must be an Int32.
HP VEE uses error numbers between 300 and
1,000; it is best to use error numbers
exclusive of this range.  You can enter the
Code in the entry box or add it as a data
input.


Message - The text message to output.  You
can enter the Message in the entry box or add
it as a data input.

NOTES
If HP VEE is invoked with the -r command line
option, an untrapped error generated by Raise
Error causes HP VEE to terminate.  The Code
and Message are written to stderr and 255 is
returned to the operating system as the exit
code.

To generate a specific exit code, use the
Stop object.

SEE ALSO
Add Error Output, Create UserObject, Exit
UserObject, Exit Thread, Start, and Stop.
