Re: core.async: exception handling
In the latest copy of core.async (taken from github master), I get this error: (go (try (go (throw (Exception.))) (catch Exception ex (println "catched" xception in thread "async-dispatch-2" java.lang.Error: java.lang.Exception at java.util.concurr
core.async: exception handling
user=> (go (try (go (throw (Exception.))) (catch Exception ex (println "catched" IllegalArgumentException contains? not supported on type: clojure.lang.PersistentList clojure.lang.RT.contains (RT.java:724) Why am I getting this error? -- -- Yo