Skip to content

Instantly share code, notes, and snippets.

@wunki
Created April 24, 2014 12:38
Show Gist options
  • Save wunki/11253195 to your computer and use it in GitHub Desktop.
Save wunki/11253195 to your computer and use it in GitHub Desktop.
(fn [request]
(try (handler request)
(catch Exception e
(let [data (ex-data e)]
(case (:type data)
:coercion-error (do (warn e) (invalid-request (:data data)))
(do (error e) internal-server-error))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment