in src/main/java/com/epam/digital/data/platform/excerpt/api/audit/ControllerAuditAspect.java [70:75]
void exceptionAudit(JoinPoint joinPoint, ResponseEntity<?> response) {
var auditableExceptionAnnotation = ((MethodSignature) joinPoint.getSignature())
.getMethod()
.getAnnotation(AuditableException.class);
prepareAndSendExceptionAudit(response, auditableExceptionAnnotation);
}