Whatever message this page gives is out now! Go check it out!
<cfabort
showError = "error message">Attribute | Req/Opt | Default | Description |
showError | Optional | Error to display, in a standard ColdFusion error page, when tag executes. |
<cftry>
<!--- make a call to a non-existent function --->
<cfset firstName = getFirstName(userId=10)>
<!--- catch any errors --->
<cfcatch type="any">
<!--- dump the error to the browser --->
<cfdump var="#cfcatch#">
<!--- abort further processing --->
<cfabort>
</cfcatch>
</cftry>