in ddm-notification-service/src/main/java/com/epam/digital/data/platform/notification/facade/UserNotificationFacade.java [156:162]
private void verifyNotification(UserNotificationMessageDto userNotificationMessageDto) {
if (Objects.isNull(userNotificationMessageDto.getNotification())) {
var msg = "Notification is not presented in message";
auditFacade.sendAuditOnFailure(null, null, Step.BEFORE, msg);
throw new NotificationException(msg);
}
}