What are the predefined exceptions in pl sql?
Following are some predefined exceptions in pl sql:
Below is the general syntax for coding the exception section in PL/SQL
1 2 3 4 5 6 7 8 9 10 11 12 | DECLARE Declaration section BEGIN Exception section EXCEPTION WHEN ex_name1 THEN -Error handling statements WHEN ex_name2 THEN -Error handling statements WHEN Others THEN -Error handling statements END; |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.