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