Multiple choice technology platforms and products

Java Exception Class is the subclass of

  1. java.lang.Error

  2. java.lang.Throwable

  3. java.lang.Util

  4. java.lang.CheckedException

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In Java's exception hierarchy, Throwable is the base class for all throwable objects. Exception inherits directly from Throwable, while Error is a separate subclass of Throwable for serious system errors that applications typically shouldn't catch.