To catch the exceptions ___________________

To catch the exceptions ___________________ Correct Answer An object must be created to catch the exception

The object must be created of a specific class of which the error has occurred. If the type of error is unknown then we can use an object of class Exceptions. This object will be able to handle any kind of exception that a program might produce.

Related Questions

In Java, can a "catch" block catch exceptions of a subclass type before catching exceptions of a superclass type?
In Java, can a "catch" block catch multiple exceptions?
In Java, can a "catch" block catch exceptions of a superclass type?