public void Show() { if (exception == null) return; if (exception.InnerException != null) { exception = exception.InnerException; } ReportWindow reportWindow = new ReportWindow(exception); reportWindow.Show(); }
public void Show() { if (exception == null) { return; } if (exception.InnerException != null) { exception = exception.InnerException; } ReportWindow reportWindow = new ReportWindow(exception); reportWindow.Show(); }