Jump to content

Exceptions: Difference between revisions

add some details for coldfusion
(add some details for coldfusion)
Line 134:
// handle any type of exception not handled by above catches
}
 
 
=={{header|ColdFusion}}==
===Catch Exceptions===
inside <cfscript>:
 
try {
foo();
} catch (Any e) {
// handle exception e
}
 
otherwise:
<cftry>
<cfcatch type="Database|...">
</cfcatch>
</cftry>
 
=={{header|Factor}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.