Package freemarker.core

Examples of freemarker.core._MiscTemplateException


            } else {
                break;
            }
        }

        return new _TemplateModelException(e, new Object[] {
                invocationErrorMessageStart(member, isConstructor),
                " threw an exception",
                isStatic || isConstructor ? (Object) "" : new Object[] {
                    " when invoked on ", parentObject.getClass(), " object ", new _DelayedJQuote(parentObject)
                },
View Full Code Here


        {
            throw e;
        }
        catch(Exception e)
        {
            throw new _TemplateModelException(e, new Object [] {
                    "An error has occurred when reading existing sub-variable ", new _DelayedJQuote(key),
                    "; see cause exception! The type of the containing value was: ",
                    new _DelayedFTLTypeDescription(this)
            });
        }
View Full Code Here

TOP

Related Classes of freemarker.core._MiscTemplateException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.