in src/main/java/com/epam/digital/data/platform/excerpt/worker/service/TemplateService.java [70:76]
public String getTemplate(Map<String, byte[]> files) {
var template = files.get(templatePath);
if (template == null) {
throw new ExcerptProcessingException(FAILED, "Excerpt template not found");
}
return new String(template, StandardCharsets.UTF_8);
}