Whatever message this page gives is out now! Go check it out!
Code that might throw an exception
One or more cfcatch blocks
</cftry><cfscript>
myQuery = queryNew("id,name,amount","Integer,Varchar,Integer",
[
{id=1,name="One",amount=15},
{id=2,name="Two",amount=18},
{id=3,name="Three",amount=32}
]);
</cfscript>
<cftry>
<cfloop query = "myQuery">
<!--- Use a non-existent column --->
<cfoutput>#location#</cfoutput>
</cfloop>
<cfcatch type="any">
<p><strong>Incorrect column referred. Please use the correct column.<strong><p>
</cfcatch>
</cftry>