What is the superclass of exception?
Answers were Sorted based on User's Feedback
Answer / krishnakanth
Object<--Throwable<--( Exception & Errors )
Exception<-- ( Checked & Unchecked )
RuntimeException<--Unchecked Exceptions
Checked Exceptions are not derived from the
RuntimeException.But it must caught by the user by using
try catch blocks.
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / sheetal panchal
java.lang.throwable
Throwable is the superclass for all exceptions and errors.
| Is This Answer Correct ? | 6 Yes | 0 No |
When do you call copy constructor?
0 Answers Tavant Technologies, Virtusa,
Can we sort hashset in java?
What is java algorithm?
Difference between canvas class & graphics class?
How can we avoid including a header more than once?
What is the difference between variable declaration and variable initialization?
What is Transient and volatile
why the abstract class has default constructor?
Which package is imported by default?
Why do we need singleton?
How do you break a loop?
What are anonymous inner classes?