public void sendNotification()

in ddm-notification-service-core/src/main/java/com/epam/digital/data/platform/notification/core/listener/AbstractNotificationListener.java [37:46]


  public void sendNotification(T message, Channel channel) {
    try {
      notificationService.notify(message);
      notificationAuditFacade.sendAuditOnSuccess(channel, message);
    } catch (RuntimeException exception) {
      notificationAuditFacade.sendAuditOnFailure(channel, message, Step.AFTER,
          exception.getMessage());
      throw new NotificationException(exception.getMessage(), exception);
    }
  }