2024-03-11 08:49:56 +00:00
|
|
|
Unconditionally executes given form and-
|
|
|
|
|
If form succeeds: return the form's result.
|
|
|
|
|
If form throws:
|
|
|
|
|
Call `error!` with the thrown error and the given signal options [1],
|
|
|
|
|
then return (:catch-val opts) if it exists, or rethrow the error.
|
|
|
|
|
|
|
|
|
|
API: [form] [id-or-opts form] => form's result (value/throw) (unconditional), or (:catch-val opts)
|
|
|
|
|
Default kind: `:error`
|
|
|
|
|
Default level: `:error`
|
|
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
2024-03-13 11:13:27 +00:00
|
|
|
(catch->error! (/ 1 0)) ; %> {:kind :error, :level :error, :error <caught> ...}
|
|
|
|
|
(catch->error! ::my-id (/ 1 0)) ; %> {... :id ::my-id ...}
|
2024-03-11 08:49:56 +00:00
|
|
|
(catch->error!
|
|
|
|
|
{:let [x "x"] ; Available to `:data` and `:msg`
|
|
|
|
|
:data {:x x}
|
2024-03-13 11:13:27 +00:00
|
|
|
:msg ["My msg:" x my-error]
|
|
|
|
|
:catch-val "Return value when form throws"
|
|
|
|
|
:catch-sym my-error ; Sym of caught error, available to `:data` and `:msg`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
(/ 1 0)) ; %> {... :data {x "x"}, :msg_ "My msg: x <caught>" ...}
|
2024-03-11 08:49:56 +00:00
|
|
|
|
|
|
|
|
Tips:
|
|
|
|
|
|
|
|
|
|
- Test using `with-signals`: (with-signals (catch->error! ...)).
|
|
|
|
|
- Supports the same options as other signals [1].
|
|
|
|
|
|
|
|
|
|
- Useful for recording errors in forms, futures, callbacks, etc.
|
|
|
|
|
|
|
|
|
|
See also `error!`.
|
|
|
|
|
|
|
|
|
|
[1] See `help:signal-options` docstring
|