No Error Struct from CFCATCH
Hello,
I am having some weird issues with CFTRY/CFCATCH. I am getting an error that says, "Variable ERROR is undefined" when I run the following code. Why isn't my Error Struct available to dump like it normall is?
Var 'test' is not defined so it should throw an error.
<cfoutput>
<cftry>
#trim(test)#
<cfcatch>
<cfdump var="#error#">
</cfcatch>
</cftry>
</cfoutput>