Cfrethrow without aborting processing
I am trying to setup and error reporting system for my webpage the will email when an exception occurs on a specific page. I like all the information that is present in the standard exceptions message and want to email taht exact content.
<cftry>
<!--- Code --->
<cfcatch type="any">
<div id="cat">ERROR !!! <cfoutput>#CFCATCH.Message#</cfoutput></div>
<div id="copy">
An Error has occured and an error notification has been sent. Please use the back button on your browser and check your data if you recieve this error more than once please try again later.
</div>
<cfmail to="Email -address" subject="OPCD Summer Job Report Error - #now()#" from="auto_error_reporting@law.ou.edu" server="hamilton.law.ou.edu" type="html">
<cfdump var="#form#">
<cfrethrow>
<cfdump var="#cfcatch#">
</cfmail>
</cfcatch>
</cftry>
I know that <cfrethrow> aborts page processing, is there was way to duplicate all the information generated in the <cfrethrow> without aborting the page processing?
<cfdump var="#cfcatch#"> is not what i am looking for.
