failjure
failjure copied to clipboard
Feature Request: `f/attempt` with implicit `f/try*`
Think it would be handy to have a macro like f/attempt
but wraps val-or-failed
in an implicit f/try*
.
Maybe something like f/try
? or change f/attempt
?:
(f/try
#(f/fail "I failed!: %s" (f/message %))
(throw (ex-info "I throw" {})))