protected Object handleRepositoryCall(ProceedingJoinPoint joinPoint) throws Throwable {
    Object returnObject = null;
    try {

      returnObject = joinPoint.proceed();
      System.out.println("Repository handle");
    } catch (Exception e) {
      RepositoryException repositoryException = new RepositoryException();
      repositoryException.getException(
          "", "", e, runtimeLogInfoHelper.getRequestHeaderBean(), joinPoint);
    }
    return returnObject;
  }