is exception a subclass of error?
feedback
|
|
No java.lang
Class Exception
java.lang.Object
extended by java.lang.Throwable
extended by java.lang.Exception
http://download.oracle.com/javase/1.4.2/docs/api/java/lang/Exception.html | |||
|
feedback
|
|
This should answer it
| ||||
|
feedback
|
|
It's easy to check: Exception extends Throwable, and also Error extends Throwable. So the answer to your question is - no. | |||
|
feedback
|
|
No. Exception and Error both Subclass Throwable. The difference is that an Error represents such a fatal crash that a program should not even try and catch it. Exceptions should be caught and handled. | |||
|
feedback
|
