On Thu, Oct 6, 2011 at 4:39 AM, Meikel Brandmeyer (kotarak) <[email protected]> wrote: > It does. > > user=> (defn f [] (Class/forName "nonexistant")) > #'user/f > user=> (try (f) (catch ClassNotFoundException e "caught!")) > "caught!"
the problem is in Reflector.java and the call to Class/forName is non-reflective, so of course it doesn't expose the problem. > > -- > You received this message because you are subscribed to the Google > Groups "Clojure" group. > To post to this group, send email to [email protected] > Note that posts from new members are moderated - please be patient with your > first post. > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/clojure?hl=en -- And what is good, Phaedrus, And what is not good— Need we ask anyone to tell us these things? -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
