Which of the following classes will handle all types in a catch block?
Click to view the answer
C.
All exceptions in Java inherit from Throwable, making Option C the correct answer.
Error and Exception extend Throwable, and RuntimeException extends Exception.