(reader-error rdr & msgs)
Throws an ExceptionInfo with the given message.
If rdr is an IndexingReader, additional information about column and line number is provided
Source
(defn reader-error
"Throws an ExceptionInfo with the given message.
If rdr is an IndexingReader, additional information about column and line number is provided"
[rdr & msgs]
(throw-ex rdr :reader-error (apply str msgs)))