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