(defn exception-causes [#^Throwable t] (lazy-seq (cons t (when-let [cause (.getCause t)] (exception-causes cause)))))
Comments top
No comments for exception-causes. Log in to add a comment.