InterviewSolution
Saved Bookmarks
| 1. |
What Is Exception ? |
|
Answer» An event during PROGRAM execution that prevents the program from continuing normally; GENERALLY, an error. The Java programming LANGUAGE supports exceptions with the try, CATCH, and THROW keywords. See also exception handler. An event during program execution that prevents the program from continuing normally; generally, an error. The Java programming language supports exceptions with the try, catch, and throw keywords. See also exception handler. |
|