As we know if any error or any unchecked exception occurs then our program will halt, then what are the differences between those?
|
feedback
|
|
From the Error Javadoc:
Versus the Exception Javadoc
So, even though an unchecked exception is not required to be caught, you may want to. An error, you don't want to catch. | |||
|
feedback
|
|
In short: You can, and probably should, recover from an exception. You can, but should not, recover from an error. | |||||||
feedback
|
|
From the JavaDoc:
So, the only difference technically is that they are two different classes. You will only catch both if you declare
But there is a big difference in how they are intended to be used. Unchecked exceptions ( | |||
|
feedback
|
|
Just as checked exceptions are useful for signaling when your methods cannot fulfill their contract, there are other errors outside of your control that can occur that prevent the Java virtual machine from fulfilling its specification, such as when memory is exhausted. Since you can't plan for such errors ahead of time, you would have to catch them everywhere, which defeats the principle of maintaining uncluttered code. Therefore, these errors are unchecked exceptions, meaning exceptions that you don't have to include in a throws clause. You are welcome to catch them (well, some of them), but the compiler won't make you do it. Unchecked exceptions fall into two categories: those that extend RuntimeException, and those that extend Error. I realize that I said earlier that classes inheriting from class Exception are checked exceptions, but that's only half true: the whole truth is that classes in the Exception hierarchy other than those in the RuntimeException sub-hierarchy are checked exceptions. Exceptions that extend RuntimeException represent errors that you may want to handle, although you're not required to. As I stated above, RuntimeExceptions are not checked because making you advertise them would have no effect on establishing the correctness of your methods, and would unnecessarily clutter your otherwise very readable code. Exceptions derived from the Error class, on the other hand, are unchecked because you never want to catch them! Error exceptions are severe errors that require shutting down the virtual machine. InternalError, which I used above, extends VirtualMachineError, which is an Error subclass. OutOfMemoryError is another obvious severe error, but there are others, like StackOverflowError, and various LinkageErrors. A linkage error means something has gone amiss when the class loader tried to load a class for execution, and commonly occurs either because some external source has introduced malicious code in an attempt to circumvent Java's security mechanism, or it came from an out-of-spec byte code generator. | |||
|
feedback
|
java.lang.Error? – LB . Apr 22 '10 at 18:21