CNCGUI.MainForm.Application_ThreadException C# (CSharp) Method

Application_ThreadException() private static method

private static Application_ThreadException ( object sender, System e ) : void
sender object
e System
return void
        private static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e)
        {
            Exception ex = e.Exception;
            MessageBox.Show(ex.Message, "Thread exception");
        }