tech.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-jdbc-driver Show documentation
Show all versions of ydb-jdbc-driver Show documentation
JDBC Driver over YDB Java SDK
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);
}
}