Example #1
0
        public void Show()
        {
            if (exception == null) return;

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

            if (exception.InnerException != null)
            {
                exception = exception.InnerException;
            }
            ReportWindow reportWindow = new ReportWindow(exception);

            reportWindow.Show();
        }