RuntimeException & Error

27.1k Views Asked by At

In the exceptions hierarchy, the descendants of RuntimeException and those of Error are runtime exceptions/errors.

The difference between the two is: Those under RuntimeException are the ones caused by poor programming/design, and those of Error are the ones that can't/shouldn't be controlled by the developer.

For coding an exception within the application, for instance, to throw an exception when something in the business logic occurs, the RuntimeException is extended.

The question is, what exactly is the difference between extending RuntimeException and extending Error-- except that extending Error is bad practice?

2

There are 2 best solutions below

2
On

Both Error and RuntimeException are unchecked exceptions, meaning that it indicate a flaw with the program, and usually should not be caught. (NullPointerException, IndexOutOfBoundsException, etc.)

I think the main difference between the two is that RuntimeException indicate there is a error with the program, and an Error is something that is fatal but out of the program's control. (OutOfMemorryError, ThreadDeath, etc.)

Therefore subclassing an Error is bad practice because an error is usually not something that could be fixed by your program at runtime. In your program, should you need to throw something, use an Exception.

0
On

The Q is, what exactly is the difference between extending RuntimeException and extending Error-- except that extending Error is bad practice?

You've already mentioned the main differences. The Java Language Specification says the same thing in different terms. For Error, it states

Error is the superclass of all the exceptions from which ordinary programs are not ordinarily expected to recover.

For RuntimeException, it states

The class RuntimeException is a direct subclass of Exception. RuntimeException is the superclass of all the exceptions which may be thrown for many reasons during expression evaluation, but from which recovery may still be possible.

What you should take away from these quotes is that you will commonly see

try {
   ...
} catch (Exception e) { // catches RuntimeException
   ...
}

as a catch all case since Exception is a super type of RuntimeException. But you will almost never see (I've never seen it)

try {
   ...
} catch (Error e) {
   ...
}