public static bool? ShowException(Exception e, string userExceptionMessage)
 {
     var window = new ExceptionMessageBox(e, userExceptionMessage);
     return window.ShowDialog();
 }
        public static bool?ShowException(Exception e, string userExceptionMessage)
        {
            var window = new ExceptionMessageBox(e, userExceptionMessage);

            return(window.ShowDialog());
        }