There is a function suspiciousFunction, and for some reason, you suspect that an exception might occur in it.
Process the call of suspiciousFunction with the help of the try-catch-finally statement. If an exception occurs in the function, print the exception message.
In the case of IOException, print the following message instead: The IOException occurred.
In the final block, output Handling completed successfully!.
Tip: Use message to get information about the exception.