Exemple #1
0
 private void ShowExceptionDetail(string title, Exception exception)
 {
     if (ExceptionDialog.IsPlatformSupported)
     {
         new ExceptionDialog(title, exception).ShowDialog(this);
     }
     else
     {
         DetailForm.ShowExceptionDetail(this, title, exception);
     }
 }
Exemple #2
0
 public void ShowNonReportable(IWin32Window owner = null)
 {
     DetailForm.ShowExceptionDetail(owner, Title, _report.ExceptionMessageRaw, _report.ExceptionDetailRaw);
 }