if an exception is not handled in the exception block of plsql then what happens?
Answers
Answered by
0
Answer:
If an exception is raised in your program and that exception is not handled by an exception section in either the current or enclosing PL/SQL blocks, that exception is "unhandled." PL/SQL returns the error which raised an unhandled exception all the way back to the application environment from which PL/SQL was run.
Similar questions