RAISE_APPLICATION_ERROR v11
The procedure, RAISE_APPLICATION_ERROR
, allows a developer to intentionally abort processing within an SPL program from which it is called by causing an exception. The exception is handled in the same manner as described in Exception Handling. In addition, the RAISE_APPLICATION_ERROR
procedure makes a user-defined code and error message available to the program which can then be used to identify the exception.
Where:
error_number
is an integer value or expression that is returned in a variable named SQLCODE
when the procedure is executed. error_number
must be a value between ‑20000
and -20999
.
message
is a string literal or expression that is returned in a variable named SQLERRM
.
For additional information on the SQLCODE
and SQLERRM
variables, see Errors and Messages.
The following example uses the RAISE_APPLICATION_ERROR
procedure to display a different code and message depending upon the information missing from an employee.
The following shows the output in a case where the manager number is missing from an employee record.