Java Tutorial : Exception Handling
The term exception in Java indicates an exceptional event. It can be defined as an abnormal event that occurs during program execution and disrupts the normal flow of instructions. The abnormal event can also be an error in the program. Errors in a Java program are categorized into two groups: compile-time errors and run-time errors. [...]

