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/c45d44ef03a81195addbd1e64f63c321 to your computer and use it in GitHub Desktop.
Save trycf/c45d44ef03a81195addbd1e64f63c321 to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
function startingPoint() {
doingSomething();
}
function doingSomething() {
try {
x = 5/0;
} catch (any err) {
writeOutput("<pre>" & err.stacktrace & "</pre>");
}
}
startingPoint();
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment