(ex-info msg map)
(ex-info msg map cause)
Create an instance of ExceptionInfo, a RuntimeException subclass
that carries a map of additional data.
Source
(defn ex-info
"Create an instance of ExceptionInfo, a RuntimeException subclass
that carries a map of additional data."
{:added "1.4"}
([msg map]
(ExceptionInfo. msg map))
([msg map cause]
(ExceptionInfo. msg map cause)))