I’m trying to catch unhandled exceptions in the application and restart it on them using WaitForDebugEvent function. But I can’t tell when exception is handled by application (try..catch for example) and when is not. How do I do that? There seem to be no such data in DEBUG_EVENT structure.
I’m trying to catch unhandled exceptions in the application and restart it on them
Share
If your not catching certain exceptions using
WaitForDebugEvent, you might want to try injecting anUnhandledExceptionFilteras well. other than that, check that your processing matches Microsofts Example