freemarker-core/src/main/java/freemarker/template/TemplateException.java [606:629]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            this.out = out;
        }

        @Override
        public void print(Object obj) {
            out.print(obj);
        }

        @Override
        public void println(Object obj) {
            out.println(obj);
        }

        @Override
        public void println() {
            out.println();
        }

        @Override
        public void printStandardStackTrace(Throwable exception) {
            if (exception instanceof TemplateException) {
                ((TemplateException) exception).printStandardStackTrace(out);
            } else {
                exception.printStackTrace(out);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



freemarker-core/src/main/java/freemarker/template/TemplateException.java [640:663]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            this.out = out;
        }

        @Override
        public void print(Object obj) {
            out.print(obj);
        }

        @Override
        public void println(Object obj) {
            out.println(obj);
        }

        @Override
        public void println() {
            out.println();
        }

        @Override
        public void printStandardStackTrace(Throwable exception) {
            if (exception instanceof TemplateException) {
                ((TemplateException) exception).printStandardStackTrace(out);
            } else {
                exception.printStackTrace(out);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



