| 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

Java Tutorial : Built-in Exceptions

The built-in exceptions in Java are categorized on the basis of whether the exception is handled by the Java compiler or not. Java consists of the following categories of built-in exceptions: Checked Exceptions Unchecked Exceptions Checked Exceptions Checked exceptions are the objects of the Exception class or any of its subclasses excluding the Runtime Exception [...]

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