Mega Code Archive

 
Categories / Oracle PLSQL Tutorial / PL SQL Programming
 

Exception Handling

The Syntax for Exceptions EXCEPTION    WHEN OTHERS THEN    <statements> statements is one or more statements that will be processed when the exception occurs. You could always code a NULL statement if no action is to be taken.