darkmoon_uk
11/09/2021, 2:02 AMcallbackFlow { ... }
if we throw a plain Exception
this halts the VM immediately, and is not caught as an in-Flow
`.catch`able error, while throwing a RuntimeException
is `.catch`able.
While this isn't so surprising given the conventional relationship between Exception
and RuntimeException
, I can't find this documented in respect to Flows - should it be? Is it?ephemient
11/09/2021, 2:17 AMdarkmoon_uk
11/09/2021, 2:46 AM