Why are the exceptions thrown in `LaunchedEffect` ...
# compose
l
Why are the exceptions thrown in
LaunchedEffect
not shown in the logcat? Normally errors is not caught so default thread exception handler works. It still freezes the UI, making it a lot harder to debug... (compose 1.0.0-beta09)
t
LaunchedEffect runs in a coroutine. Coroutines in general don't propagate exceptions, so you'll need to handle them explicitly.
l
Some errors are thrown in compose-ui or material, so I cannot handle them explicitly. How can I catch it?