InterviewSolution
Saved Bookmarks
| 1. |
When Throws Keyword Is Used? |
|
Answer» If a method does not handle a checked exception, the method must DECLARE it using the throwskeyword. The THROWS KEYWORD APPEARS at the end of a method's SIGNATURE.. If a method does not handle a checked exception, the method must declare it using the throwskeyword. The throws keyword appears at the end of a method's signature.. |
|