private static void RunExceptionMessageHandler(Exception ex) { MExceptionReporter.ReportException reportException = new MExceptionReporter.ReportException(Application.ProductName, ex); reportException.ShowDialog(); return; }
public static void TriggerError(Exception ex) { MExceptionReporter.ReportException re = new MExceptionReporter.ReportException(Application.ProductName, ex); re.ShowDialog(); }