private boolean judgeSkipRefreshException()

in src/main/java/com/aliyuncs/kms/secretsmanager/client/SecretCacheClient.java [280:283]


    private boolean judgeSkipRefreshException(CacheSecretException e) {
        return e.getCause() instanceof ClientException && !judgeServerException((ClientException) e.getCause())
                && !(CacheClientConstant.CLIENT_EXCEPTION_ERROR_CODE_FORBIDDEN_IN_DEBT_OVER_DUE.equals(((ClientException) e.getCause()).getErrCode()) || CacheClientConstant.CLIENT_EXCEPTION_ERROR_CODE_FORBIDDEN_IN_DEBT.equals(((ClientException) e.getCause()).getErrCode()));
    }