Java Throwable VS Exception Class | Delft Stack
www.delftstack.com › java-throwable-vs-exceptionNov 4, 2022 · Which Class Should We Use, Throwable or Exception When we look at the syntax of the Throwable and Exception classes, it looks similar at first sight as we are using both with the try-catch block. The instance of the Throwable class can catch the errors and exceptions as they are a subclass of Throwable , but the instance of Exceptions can only catch the exceptions that occur in the program.