コード例 #1
0
ファイル: diagnostics.cs プロジェクト: MilkTool/kiezellisp
        public static Exception UnwindExceptionIntoNewException(Exception ex)
        {
            var    ex2 = UnwindException(ex);
            string str = GetDiagnostics(ex2).Indent(">>> ");
            var    ex3 = new LispException(str, ex2);

            return(ex3);
        }
コード例 #2
0
ファイル: diagnostics.cs プロジェクト: jantolenaar/kiezellisp
 public static Exception UnwindExceptionIntoNewException(Exception ex)
 {
     var ex2 = UnwindException(ex);
     string str = GetDiagnostics(ex2).Indent(">>> ");
     var ex3 = new LispException(str, ex2);
     return ex3;
 }