You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A workaround to catch unhandled exceptions is to use the Coroutine.Completed event.
publicabstractclassTypedBootstrapper:BootstrapperBase{protectedoverridevoidConfigure(){
Coroutine.Completed +=CoroutineOnCompleted;}privatestaticvoidCoroutineOnCompleted(objectsender,ResultCompletionEventArgse){if(e.Error !=null){// Do something with the unhandled exception}}}
Thansk to this code in TaskResult class the Coroutine just queitly dies when exception occours in Task.
OnUnhandledException in bootstrapper isnt called either
The text was updated successfully, but these errors were encountered: