public static boolean judgeNeedRecoveryException()

in src/main/java/com/aliyuncs/kms/secretsmanager/client/utils/BackoffUtils.java [43:48]


    public static boolean judgeNeedRecoveryException(ClientException e) {
        if (CacheClientConstant.SDK_READ_TIMEOUT.equals(e.getErrCode()) || CacheClientConstant.SDK_SERVER_UNREACHABLE.equals(e.getErrCode()) || judgeNeedBackoff(e)) {
            return true;
        }
        return false;
    }