

InterviewSolution
Saved Bookmarks
1. |
What is the use of exception handling in Java ? |
Answer» Exception handling is a term associated with handling irregular situations that occur while a program is executing. When some error is occurred in a program then an exception is created by its throwable class. It helps Java not to terminate the program when the error occurs rather the program is able to continue execution. |
|