is exception a subclass of error?

link|improve this question

20% accept rate
8  
This could have been answered by checking the API doc quicker than asking the question here. – Robin Aug 17 '10 at 13:46
2  
But he wouldn't have got 7 nearly identical answers then! – Stephen Aug 17 '10 at 14:01
and 4 up votes... – Carlos Heuberger Aug 17 '10 at 15:11
feedback

6 Answers

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

link|improve this answer
feedback

This should answer it

Types in red, and their subclasses, are unchecked.

link|improve this answer
+1 for totally unnecessary but pretty diagram. – Justin K Sep 3 '10 at 13:38
feedback

It's easy to check: Exception extends Throwable, and also Error extends Throwable. So the answer to your question is - no.

link|improve this answer
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.

link|improve this answer
feedback

No. Exception and Error are both subclasses of Throwable.

link|improve this answer
feedback

No. See apidoc of Throwable.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.