Throws an Exception or Error if test is false. args are those documented
for throwf.
(defn throw-if-not
"Throws an Exception or Error if test is false. args are those documented
for throwf."
[test & args]
(when-not test
(throw (throwable args))))
Comments top
No comments for throw-if-not. Log in to add a comment.