Java Exception Types

Exceptions can be divided into two major categories. Error Error is a subclass of Throwable. Errors are those situations which tells that there is some severe problem which is causing the abrupt ending of the program. Errors although can be caught using Exception handling mechanism, but should not be handled programatically. Below are some of … Continue reading Java Exception Types