What is root class of all java exception classes?

1 answer

Answer

1062417

2026-06-06 14:10

+ Follow

Java
Java

The root class of all Java exception classes is Throwable. It has two main subclasses: Error, which represents serious problems that a reasonable application should not catch, and Exception, which represents conditions that a typical application might want to catch. Most user-defined exceptions are subclasses of Exception.

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.