Java / Exception
Difference between Error and runtime exceptions in Java.
An Error is a subclass of Throwable that indicates serious problems that a reasonable application should not try to catch. Most such errors are abnormal conditions. The ThreadDeath error, though a "normal" condition, is also a subclass of Error because most applications should not try to catch it.
The class Exception and its subclasses are a form of Throwable that indicates conditions that a reasonable application might want to catch.
More Related questions...