Hey there,

I upgraded to JDK8 and wanted to start using the new java.time.* packages. 
I started by implementing reader functions to get rid of #inst like:

#time/local-date [2014 4 13]
#time/local-datetime [2014 4 13 14 23]

While that works fine and as expected, one thing I ran into is confusing 
error messages.

For example, from a REPL:

user=> (pr-str #time/local-datetime [2014 4 1 0 0 2 99999999999])

DateTimeException Invalid value for NanoOfSecond (valid values 0 - 
999999999): 1215752191  java.time.temporal.ValueRange.checkValidValue 
(ValueRange.java:311)
RuntimeException Unmatched delimiter: )  clojure.lang.Util.runtimeException 
(Util.java:221)

Or another one:

user=> (pr-str #time/local-date [2014 4 31])

DateTimeException Invalid date 'APRIL 31'  java.time.LocalDate.create 
(LocalDate.java:431)
RuntimeException Unmatched delimiter: )  clojure.lang.Util.runtimeException 
(Util.java:221)


The first part is what I expected, however the "Unmatched delimiter" part 
is not what I expected. Is there any special exception I should be throwing 
in a reader function that read something that can never be correct? Also 
why do I need print-dup?

Nothing serious, just curious if its a bug or an oversight on my part.

Regards,
/thomas



PS: Clojure 1.6.0 btw

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to