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());
}
}