Which is superclass of Exception?many people think that object,no there is particular class which is superclass of all exception it starts with letter B,plz tell me

Showing Answers 1 - 14 of 14 Answers

FatiRoche

  • May 23rd, 2006
 

The super class for exception is java.lang.throwable

divided into two types:

1.java.lang.exception

2.java.lang.error

  Was this answer useful?  Yes

Amit Patil

  • Sep 19th, 2007
 

java.lang.Throwable is superclass for Exception.No class name starting with B.

  Was this answer useful?  Yes

The super class of all Exceptions in java is Throwable.
It has two sub-classes :: Exception and Error

Exception forms the base class for Exceptions like ArrayIndexOutofBounds etc..
Error is another sub-class, these are catastrophic in nature and not caught by normal java program..

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions