in service/src/main/java/org/apache/fineract/cn/notification/service/internal/importer/Importer.java [113:120]
private void createEmailConfiguration(final EmailConfiguration toCreate) {
try {
notificationManager.createEmailConfiguration(toCreate);
}
catch (final Exception ignored) {
logger.error("Creation of email configuration {} failed, because a template with the same identifier but different properties already exists {}", toCreate.getIdentifier(),toCreate.toString());
}
}