One more for the crappy error messages file.

2014-12-07 Thread Fluid Dynamics
IllegalArgumentException No implementation of method: :make-reader of protocol: #'clojure.java.io/IOFactory found for class: nil clojure.core/-cache-protocol-fn (core_deftype.clj:541) This, apparently, is clojure.java.io's way of saying file not found. :) If there's a list somewhere of

Re: One more for the crappy error messages file.

2014-12-07 Thread Mikera
How are you getting that error? Are you sure you aren't just passing a nil parameter by accident? For example, I get the same error when I pass nil to the clojure.java.io/reader function. Clojure usually throws file not found exceptions where appropriate, e.g. (use 'clojure.java.io) (reader

Re: One more for the crappy error messages file.

2014-12-07 Thread Fluid Dynamics
On Monday, December 8, 2014 1:29:51 AM UTC-5, Mikera wrote: How are you getting that error? Are you sure you aren't just passing a nil parameter by accident? For example, I get the same error when I pass nil to the clojure.java.io/reader function. Clojure usually throws file not found