InterviewSolution
Saved Bookmarks
| 1. |
What Is Exception Handler ? |
|
Answer» A block of CODE that reacts to a specific type of exception. If the exception is for an error that the PROGRAM can recover from, the program can resume executing after the exception HANDLER has EXECUTED. A block of code that reacts to a specific type of exception. If the exception is for an error that the program can recover from, the program can resume executing after the exception handler has executed. |
|