InterviewSolution
Saved Bookmarks
| 1. |
How do you declare a user-defined exception? |
|
Answer» User defined exceptions are declared under the DECLARE section, with the keyword EXCEPTION. Syntax − <exception_name> EXCEPTION; |
|