All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.ydb.jdbc.exception.YdbConditionallyRetryableException Maven / Gradle / Ivy

There is a newer version: 2.3.5
Show newest version
package tech.ydb.jdbc.exception;

import tech.ydb.core.StatusCode;

// Treat this as non retryable exception by nature, i.e. need to handle in consciously
public class YdbConditionallyRetryableException extends YdbNonRetryableException {
    private static final long serialVersionUID = 1135970796364528563L;

    public YdbConditionallyRetryableException(String message, StatusCode statusCode) {
        super(message, statusCode);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy