tech.ydb.jdbc.exception.YdbRetryableException 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;
public class YdbRetryableException extends YdbExecutionStatusException {
private static final long serialVersionUID = 688604408491567864L;
public YdbRetryableException(String message, StatusCode statusCode) {
super(message, statusCode);
}
}