Package freemarker.core

Examples of freemarker.core.StopException


        this.message = message;
    }

    public void execute(Environment env) throws TemplateException {
        if (message == null) {
            throw new StopException(env);
        }
        throw new StopException(env, message.getStringValue(env));
    }
View Full Code Here


        {
            nestedBlock.execute(env);
        }
        else
        {
            throw new StopException(env, "Stopped by debugger");       
        }
    }
View Full Code Here

TOP

Related Classes of freemarker.core.StopException

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.