Package br.com.caelum.vraptor.templates

Examples of br.com.caelum.vraptor.templates.TemplateNotFoundException


  public Template getTemplate(String name) {
    try {
      logger.debug("trying to load template " + name + "at" + configs.getTemplatesPath());
      return engine.getTemplate(name + ".vm");
    } catch (ResourceNotFoundException e) {
      throw new TemplateNotFoundException("Could not find template " + name + " at " + configs.getTemplatesPath());
    }
  }
View Full Code Here


  public Template getTemplate(String name){
    try {
      logger.debug("trying to load template " + name + "at" + configs.getTemplatesPath());
      return cfg.getTemplate(name + ".ftl");
    } catch (IOException e) {
      throw new TemplateNotFoundException("Could not find template " + name + " at " + configs.getTemplatesPath());
    }
  }
View Full Code Here

TOP

Related Classes of br.com.caelum.vraptor.templates.TemplateNotFoundException

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.