InterviewSolution
Saved Bookmarks
| 1. |
What Is The Catch Or Declare Rule For Method Declarations? |
|
Answer» If a checked exception may be THROWN WITHIN the body of a method, the method MUST either catch the exception or declare it in its throws clause. If a checked exception may be thrown within the body of a method, the method must either catch the exception or declare it in its throws clause. |
|