Skip to content

Instantly share code, notes, and snippets.

@pcomans
Created July 18, 2011 17:13
Show Gist options
  • Save pcomans/1090078 to your computer and use it in GitHub Desktop.
Save pcomans/1090078 to your computer and use it in GitHub Desktop.
(throw (Exception. "Oh noes!"))
(defn throw-catch [f]
(try
(f)
(catch ArithmeticException e "Are you bad at math?")
(catch Exception e (str "That didn't work!" e))
(finally (println "returning..."))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment