Catch Block Example

Learn about the execution of the catch block in case of an exception.

We'll cover the following...

Problem

What happens to the objects created in a try block when an exception occurs and control is transferred to the catch block? Can we write a catch block that will catch any exception that we haven’t caught specifically?

Coding solution

Here is a solution to the problem above.