com.yandex.ydb.jdbc.exception.YdbConditionallyRetryableException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-sdk-jdbc-uberjar Show documentation
Show all versions of ydb-sdk-jdbc-uberjar Show documentation
JDBC client implementation over Table client, single jar
package com.yandex.ydb.jdbc.exception;
import com.yandex.ydb.core.StatusCode;
// Treat this as non retryable exception by nature, i.e. need to handle in consciously
public class YdbConditionallyRetryableException extends YdbNonRetryableException {
public YdbConditionallyRetryableException(Object response, StatusCode statusCode) {
super(response, statusCode);
}
}