InterviewSolution
Saved Bookmarks
| 1. |
What Happens If An Exception Is Not Handled In A Sub- Block? |
|
Answer» If an EXCEPTION is not HANDLED in a sub-block, the exception propagates to the enclosing blocks until the associated handler is FOUND. If none of the blocks has a handler for the exception, an unhandled exception ERROR is passed BACK to the host environment as follows: If an exception is not handled in a sub-block, the exception propagates to the enclosing blocks until the associated handler is found. If none of the blocks has a handler for the exception, an unhandled exception error is passed back to the host environment as follows: |
|