24. 21. 1. Adding User-Defined Exceptions |
|
Before raising a user-defined exception, you must first declare the exception. |
The syntax is |
<exception_name> exception;
|
|
When you raise the exception, you do it by using the RAISE command. |
The syntax is: |
|
Handle your exception just as if it were a named predefined exception. The syntax is: |
when <exception_name> then
|
|