Marcin Wisniowski
07/31/2024, 2:58 AMWindowExceptionHandlerFactory
is used. Is it handling all exceptions in Compose, or only exceptions in Windows?
application {
CompositionLocalProvider(LocalWindowExceptionHandlerFactory provides MyHandler) {
throw Exception("1")
Window(..) {
throw Exception("2")
}
}
}
Is my understanding correct, that the handler should catch exception 2, but not exception 1?