SyntaxFix
Write A Post
Hire A Developer
Questions
finally is for defining "clean up actions". The finally clause is executed in any event before leaving the try statement, whether an exception (even if you do not handle it) has occurred or not.
finally
try
I second @Byers's example.