CFFINALLY
For use within the CFTRY tag. This block will render always after any exception handling
Usage
<cffinally> ... </cffinally>
Extra
<cftry> <!--- This will cause an error ---> <cfset a = variableDoesNotExist> <cfcatch> <!--- Enters here upon error; you can do anything in here ---> <cfdump var="#cfcatch#"> </cfcatch> <cffinally> <!--- This block will always be executed, even if an exception is thrown and caught ---> </cffinally> </cftry>