The scope of exceptions. : Exception Handle « PL SQL « Oracle PL / SQL






The scope of exceptions.

     
SQL>
SQL> BEGIN
  2    DECLARE
  3      myException EXCEPTION;
  4    BEGIN
  5      RAISE myException;
  6    END;
  7  EXCEPTION
  8    WHEN OTHERS THEN
  9      RAISE;
 10  END;
 11  /
BEGIN
*
ERROR at line 1:
ORA-06510: PL/SQL: unhandled user-defined exception
ORA-06512: at line 9


SQL>

   
    
    
    
  








Related examples in the same category

1.Check exception type
2.Deal with multiple exception branches
3.when other exceptions then
4.Handle update exception
5.declaration exception
6.handle exception of duplicate value on index
7.when other then not user-defined exception
8.Using PRAGMA EXCEPTION_INIT
9.Different Values of SQLCODE and SQLERRM
10.The OTHERS Exception Handler
11.Error-handling features of PL/SQL: log exception
12.PLS-483 error: Duplicate Handlers
13.NO_DATA_FOUND exception.
14.Sub block in exception section
15.Catch all exceptions
16.Catch user-defined exception
17.Check zero divide exception
18.Combines declaring an EXCEPTION variable
19.Insert error message to a table in exception handler
20.Mapping a user-defined error code to an EXCEPTION variable
21.This script demonstrates the EXCEPTION_INIT pragma.
22.Error Handling Call
23.Raise exception in if statement