Real-life use of finally block in try ... catch .. finally

Hi

I tried to explore the real-life usage of the finally block in try … catch … finally construct. Everywhere, I just saw something like trace(“inside finally block.”);

If this bock is executed in all the circumstance, whether there is an error or not, then what would be the point to keeping it inside the error-catching construct.

Any comments, please!