示例#1
0
        public static void Throw(string exception, string exceptionMessage)
        {
            var exceptionWindow = new ExceptionForm(exception, exceptionMessage);

            exceptionWindow.ShowDialog();
        }
示例#2
0
 public static void Throw(string exception, string exceptionMessage)
 {
     var exceptionWindow  = new ExceptionForm(exception, exceptionMessage);
     exceptionWindow.ShowDialog();
 }