Thursday 18th April 2024
REGISTRATION
Online Fashion Store

CBSE eBooks

CBSE Guess > eBooks > Class XII > Informatics Practices By Agnelo

Exception Propaqation

Previous Index Next

Unhandled exceptions are passed to the system containing the PL/SQL engine.
Exceptions can be re-raised in their handler; passes control to handler in outer block.
Exceptions can be ignored by using NULL as the handler.
Generic exception handler implemented by:
   WHEN Exception1 THEN Statements1;
   WHEN Exception2 THEN Statements2;
   ...
   WHEN OTHERS THEN Statementsn;
   END;

Previous Index Next