InterviewSolution
Saved Bookmarks
| 1. |
Which Classes Of Exceptions May Be Caught By A Catch Clause In Java Programming? |
|
Answer» A catch clause can catch any exception that MAY be assigned to the THROWABLE TYPE. This INCLUDES the Error and Exception types. A catch clause can catch any exception that may be assigned to the Throwable type. This includes the Error and Exception types. |
|