Enum UnhandledExceptionMode
Defines where an application should send unhandled exceptions.
public enum UnhandledExceptionMode
Fields
CatchException = 0Always route exceptions to the event handler. If no event handler is assigned, application will show default error dialog with exception details, 'Continue' and 'Quit' buttons.
CatchWithDialog = 2Route exceptions to the event handler. If exceptions are not handled there, application will show default error dialog with exception details, 'Continue' and 'Quit' buttons.
CatchWithDialogAndThrow = 3Route exceptions to the event handler. If exceptions are not handled there, application will show default error dialog with exception details, 'Continue' and 'Quit' buttons. If user presses 'Continue', exception will be shrown.
CatchWithThrow = 4Route exceptions to the event handler. If exceptions are not handled there they will be shrown.
ThrowException = 1Never route exceptions to the event handler. Application will throw the exceptions.