public static ExceptionWindow CreateWindow(Exception exc)
        {
            var wnd = new ExceptionWindow();

            wnd.excText.Text = exc.ToString();
            return(wnd);
        }
 public static ExceptionWindow CreateWindow(Exception exc)
 {
     var wnd = new ExceptionWindow();
     wnd.excText.Text = exc.ToString();
     return wnd;
 }