in src/main/java/com/epam/digital/data/platform/notification/service/AbstractGenericNotificationLoader.java [66:73]
private NotificationYamlObject getNotificationAttributes(File file) throws IOException {
try {
return yamlMapper.readValue(file, NotificationYamlObject.class);
} catch (FileNotFoundException e) {
log.info("Attributes file {} not existing", file.getName());
return new NotificationYamlObject();
}
}