The `Throwable` class is the superclass of all errors and exceptions in the Java programming language. Only objects that are instances of this class (or one of its subclasses) are thrown by the Java VM or could be thrown by the Java `throw` statement.
The Throwable
class is the superclass of all errors and exceptions in the Java programming language. Only objects that are instances of this class (or one of its subclasses) are thrown by the Java VM or could be thrown by the Java throw
statement. Similarly, only this class or one of its subclasses can be the argument type in a catch
clause. For the purposes of compile-time checking of exceptions, Throwable
and any subclass of Throwable
that is not also a subclass of either RuntimeException
or Error
are regarded as checked exceptions.
For the further details and reference the documentation for Class Throwable.