in src/main/java/com/epam/digital/data/platform/excerpt/api/service/ExcerptGenerationService.java [121:126]
private void validateTemplateType(ExcerptTemplate excerptTemplate, ExcerptEventDto eventDto) {
String templateType = excerptTemplate.getTemplateType();
if(UNSIGNED_TYPES.contains(templateType) && eventDto.isRequiresSystemSignature()) {
throw new SigningNotAllowedException(templateType + " file not allowed to sign");
}
}