| Mobile | RSS

Java Tutorial : Exception-Handling – Summary

Errors can be broadly categorized into two groups on the basis of whether the compiler is able to handle the error or not, such as compile time errors and runtime errors. An exception is a run-time error that can be defined as an abnormal event that occurs during the execution of a program and disrupts [...]

[ More ] 29th Nov, 2009 | No Comment | Posted in Java
Exception Hierarchy

Java Tutorial : Exception Classes

Exception Handling To handle exceptions, the Java run-time system searches for an exception-handler. In Java, a catch statement is an exception-handler that is used to handle an exception. The search for an exception-handler begins with the method in which the exception is raised. If no appropriate exception-handler is found, the Java run-time system searches the [...]

[ More ] 11th Oct, 2009 | No Comment | Posted in Java