Whatever message this page gives is out now! Go check it out!
<cftry>
try code <cfcatch>
catch code <cfcatch>
...
<cffinally>
final code </cffinally>
</cftry><h3>cffinally Example</h3>
<!--- Open a cftry block. --->
<cftry>
....
<cfcatch type = "Database">
....
</cfcatch>
<cffinally>
....
<!--- Do some cleanup here before leaving cftry block --->
....
</cffinally
</cftry>