Which of these is a super class of all errors and exceptions in the Java language?
(A) RunTimeExceptions
(B) Throwable
(C) Catchable
(D) None of the above
Answer: (B)
Explanation: All the errors and exception types are subclasses of the built in class Throwable in the java language. Throwable class is the superclass of all errors and exceptions in the Java language.
Option (B) is correct.
Quiz of this Question