(illegal-arg-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 illegal-arg-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 :illegal-argument (apply str msgs)))