(defn print-sql-exception-chain "Prints a chain of SQLExceptions to stream" [stream exception] (loop [e exception] (when e (print-sql-exception stream e) (recur (.getNextException e)))))
Comments top
No comments for print-sql-exception-chain. Log in to add a comment.