4243444546474849
} @Override public Template findOneById(final Long id) { final Template template = this.templateRepository.findOne(id); if (template == null) { throw new TemplateNotFoundException(id); } return template; }