Adobe added cffinally tag in Coldfusion 9. I'm not sure whether this new tag is useful or not.

cffinally

Using cffinally tag within cftry tag for execution after procession of cftry or cfcatch. It will execute even exception has been cought in cfcatch.

view plain print about
1<cftry>
2    <cfloop from="1" to="10" index="j">
3        <!--- error will occur --->
4        <cfoutput>#i#</cfoutput>
5    </cfloop>
6    <cfcatch type="any">
7        <cfoutput>#cfcatch.message#</cfoutput>
8    </cfcatch>
9    <cffinally>
10        <!--- time will display even exception is cought --->
11        <cfoutput>#timeformat(now(), "hh:mm:ss")#</cfoutput>
12    </cffinally>
13</cftry>