Exemple #1
0
        public static Exception UnwindExceptionIntoNewException(Exception ex)
        {
            var    ex2 = UnwindException(ex);
            string str = GetDiagnostics(ex2).Indent(">>> ");
            var    ex3 = new LispException(str, ex2);

            return(ex3);
        }
 public static Exception UnwindExceptionIntoNewException(Exception ex)
 {
     var ex2 = UnwindException(ex);
     string str = GetDiagnostics(ex2).Indent(">>> ");
     var ex3 = new LispException(str, ex2);
     return ex3;
 }