Used with one or more cfcatch tags. Together, they catch and process exceptions in ColdFusion pages. Exceptions are events that disrupt the normal flow of instructions in a ColdFusion page, such as failed database operations, missing include files, and developer-specified events.
<cftry> code here <cfcatch type = "exceptiontype"> Exception processing code here </cfcatch> Optional: More cfcatch blocks here </cftry>
cfcatch,
cferror,
cfrethrow,
cfthrow
New in ColdFusion MX: The SQLSTATE return value in a cfcatch
tag depends on the database driver type:
If your application depends on SQLSTATE values for flow control, the application might produce unexpected behavior with ColdFusion MX.
New in ColdFusion MX: it is not necessary, when you include a cfcatch
tag with type="any"
, to do so in the last cfcatch
tag in the block, to ensure that all other tests are executed before it. ColdFusion finds the best-match cfcatch
block.
New in ColdFusion MX: the cftry
and cfcatch
tags can be used as cfscript constructs, and for handling component method invocation errors.
New in ColdFusion MX: you cannot modify the structure returned by cfcatch
.
New in ColdFusion MX: The cfcollection, cfindex, and cfsearch tags can throw the SEARCHENGINE exception. In earlier releases, an error in processing these tags threw only an UNKNOWN exception.
Within a cftry
block, you must code at least one cfcatch
tag. Put cfcatch
tags at the end of a cftry
block. ColdFusion tests cfcatch
tags in the order in which they appear.
If type="any"
, ColdFusion Server catches exceptions from any CFML tag, data source, or external object. To get the exception type use code such as the following:
#cfcatch.type#
Applications can use the cfthrow
tag to throw developer-defined exceptions. Catch these exceptions with any of these type
options:
"
custom_type"
"Application"
"Any"
The custom_type
type is a developer-defined type specified in a cfthrow
tag. If you define a custom type as a series of strings concatenated by periods (for example, "MyApp.BusinessRuleException.InvalidAccount
"), the cfcatch
tag can catch the custom type by its character pattern. The tag searches for a matching exception type, starting with the most specific (the entire string), and ending with the least specific.
For example, you could define a type as follows:
<cfthrow type = "MyApp.BusinessRuleException.InvalidAccount">
The cfcatch
tag first searches the cfthrow
tag for the entire type string:
<cfcatch type = "MyApp.BusinessRuleException.InvalidAccount">
If it does not find a match, it searches for the next most specific:
<cfcatch type = "MyApp.BusinessRuleException">
Finally, it searches for the least specific:
<cfcatch type = "MyApp">
You can code cfcatch
tags in any order to catch a custom exception type.
If you specify type = "Application"
, the cfcatch
tag catches only custom exceptions that have the Application
type in the cfthrow
tag that defines them.
The cfinclude
, cfmodule
, and cferror
tags throw an exception of type = "template"
.
An exception that is thrown within a cfcatch
block cannot be handled by the cftry
block that immediately encloses the cfcatch
tag. However, you can rethrow the currently active exception with the cfrethrow tag.
The following example shows how to throw an exception from a component method:
<cfcomponent> <cffunction name="getEmp"> <cfargument name="lastName" required="yes"> <cfquery name="empQuery" datasource="ExampleApps" > SELECT LASTNAME, FIRSTNAME, EMAIL FROM tblEmployees WHERE LASTNAME LIKE '#arguments.lastName#' </cfquery> <cfif empQuery.recordcount LT 1> <cfthrow type="noQueryResult" message="No results were found. Please try again."> <cfelse> <cfreturn empQuery> </cfif> </cffunction> </cfcomponent>
For an explanation of the example and more information, see the "Building and Using ColdFusion Components" chapter in Developing ColdFusion Applications.
The cfcatch
variables provide the following exception information:
You can specify the following advanced exception types in the type
attribute:
<!--- cftry example, using TagContext to display the tag stack. ---> <h3>cftry Example</h3> <!--- open a cftry block ---> <cftry> <!--- note misspelled tablename "employees" as "employeeas" ---> <cfquery name = "TestQuery" dataSource = "cfsnippets"> SELECT * FROM EMPLOYEEAS </cfquery> <!--- <p>... other processing goes here ---> <!--- specify the type of error for which we search ---> <cfcatch type = "Database"> <!--- the message to display ---> <h3>You've Thrown a Database <b>Error</b></h3> <cfoutput> <!--- and the diagnostic message from the ColdFusion server ---> <p>#cfcatch.message#</p> <p>Caught an exception, type = #CFCATCH.TYPE# </p> <p>The contents of the tag stack are:</p> <cfloop index = i from = 1 to = #ArrayLen(CFCATCH.TAGCONTEXT)#> <cfset sCurrent = #CFCATCH.TAGCONTEXT[i]#> <br>#i# #sCurrent["ID"]# (#sCurrent["LINE"]#,#sCurrent["COLUMN"]#) #sCurrent["TEMPLATE"]# </cfloop> </cfoutput> </cfcatch> </cftry>