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