Created
May 12, 2013 16:31
-
-
Save also/5564110 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
user=> (try | |
#_=> (/ 1 0) | |
#_=> (catch Throwable t (throw (RuntimeException. t)))) | |
ArithmeticException Divide by zero clojure.lang.Numbers.divide (Numbers.java:156) | |
user=> (try | |
#_=> (/ 1 0) | |
#_=> (catch Throwable t (throw (RuntimeException.)))) | |
RuntimeException user/eval4065 (NO_SOURCE_FILE:2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment