|
What happens to the exception when it is thrown to the Java runtime system? A good answer might be:The Java runtime system catches it. |
Checked and Unchecked Exceptions
The Java runtime system will catch the exception, just as your code can
do with a
Here is our list (again) of exception types,
with the checked exceptions indicated.
Only
|
QUESTION 6:(Review: ) What must your code do with a checked exception? Click Here after you have answered the question |