Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trycf/b5e212587adc6532d52f7246a8b3beb1 to your computer and use it in GitHub Desktop.
Save trycf/b5e212587adc6532d52f7246a8b3beb1 to your computer and use it in GitHub Desktop.
TryCF Gist
<cftry>
<cfhttp url="http://missing.luce1e.org" result="result" throwOnError=true></cfhttp>
<cfcatch>
<cfdump var=#cfcatch#>
<cfif cfcatch.errorCode eq 0 >
// really failed expletives (censored)
<cfelse>
// may needs extra handling, 401 etc
</cfif>
</cfcatch>
</cftry>
<cftry>
<cfhttp url="http://missing.lucee.org" result="result" throwOnError=true></cfhttp>
<cfcatch>
<cfdump var=#cfcatch#>
<cfif cfcatch.errorCode eq 0 >
// really failed expletives (censored)
<cfelse>
// may needs extra handling, 401 etc
</cfif>
</cfcatch>
</cftry>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment