InterviewSolution
Saved Bookmarks
| 1. |
Describe The Others Exception Handler ? |
|
Answer» The exception section handles only those ERRORS that are specified; however, other errors that are not specified cannot be HANDLED. To HANDLE these errors explicitly, the OTHERS exception HANDLER is used that is always DEFINED as the last exception handler. The exception section handles only those errors that are specified; however, other errors that are not specified cannot be handled. To handle these errors explicitly, the OTHERS exception handler is used that is always defined as the last exception handler. |
|