I'm trying to learn more about basic Java and the different types of Throwables, can someone let me know the differences between Exceptions and Errors?
|
|
Errors should not be caught or handled (except in the rarest of cases). Exceptions are the bread and butter of exception handling. The Javadoc explains it well:
Look at a few of the subclasses of
There are really three important subcategories of
|
|||
|
|
Another interesting question in my opinion is "Are Errors checked exceptions?" |
||||
|
|
|
IMO an error is something that can cause your application to fail and should not be handled. An exception is something that can cause unpredictable results, but can be recovered from. Example: If a program has run out of memory it is an error as the application cannot continue. However, if a program accepts an incorrect input type it is an exception as the program can handle it and redirect to receive the correct input type. |
||
|
|
|
|
Here's a pretty good summary from Java API what an Error and Exception represents:
OTOH, for Exceptions, Java API says:
|
||
|
|
|
|
The description of the
Cited from Java's own documentation of the class In short, you should not catch An |
||
|
|
|
|
Two types of errors: Runtime and compile time. Errors are irrecoverable exceptions. In the case of compile time error the java compiler (javac) will fail, and compilation will end. In the case of a runtime error, a program will terminate execution. An exception, on the other hand, is a negative situation (error) handled by code, but not desired. This "throws an error" which can be handled by the programer in the "catch" statement. An example is writing to a disk. Sometimes the program is unable to properly access the disk, permissions, deadlock, ect. This is a common error, so an exception is thrown and handled by java, which the programmer can then handle and respond to without crashing his program. |
||
|
|
|
|
Sun puts it best:
|
||
|
|
|
|
Errors tend to signal the end of your application as you know it. It typically cannot be recovered from and should cause your VM to exit. Catching them should not be done except to possibly log or display and appropriate message before exiting. Example: OutOfMemoryError - Not much you can do as your program can no longer run. Exceptions are often recoverable and even when not, they generally just mean an attempted operation failed, but your program can still carry on. Example: IllegalArgumentException - Passed invalid data to a method so that method call failed, but it does not affect future operations. These are simplistic examples, and there is another wealth of information on just Exceptions alone. |
|||
|
|
|
|
Exceptions are a way to brake out of the normal flow of code when an error occurs. Generally exceptions are specified for an expected type of error. An error is simply a piece of code that does not result in an acceptable value. |
||||
|
