Skip to content

Instantly share code, notes, and snippets.

@pingles
Created June 14, 2011 19:41
Show Gist options
  • Save pingles/1025688 to your computer and use it in GitHub Desktop.
Save pingles/1025688 to your computer and use it in GitHub Desktop.
(ns error-example)
(defn calculation
[x]
(if (= x 5)
(throw (RuntimeException. "Hipsters!"))
x))
(map calculation (range 1 20))
;; RuntimeException Hipsters! error-example/calculation (NO_SOURCE_FILE:30)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment