Object handleLivenessState()

in src/main/java/com/epam/digital/data/platform/soapapi/core/aspect/LivenessStateCheckAspect.java [47:59]


  Object handleLivenessState(ProceedingJoinPoint joinPoint) throws Throwable {
    Throwable processingException = null;
    try {
      return joinPoint.proceed();
    } catch (Throwable e) {
      processingException = e;
      throw e;
    } finally {
      livenessStateHandler.handleResponse(
          processingException,
          this::isNonLivenessHealthyException);
    }
  }