InterviewSolution
Saved Bookmarks
| 1. |
How Can A Current Exception Be Re-raised? |
|
Answer» The RAISE statement can be used to re-raise the current EXCEPTION. It STOPS the normal execution of a PL/SQL program and transfers the CONTROL to an exception handler, as SHOWN in the following code: The RAISE statement can be used to re-raise the current exception. It stops the normal execution of a PL/SQL program and transfers the control to an exception handler, as shown in the following code: |
|