tech.ydb.jdbc.exception.YdbResultTruncatedException 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;
public class YdbResultTruncatedException extends YdbExecutionException {
private static final long serialVersionUID = -1887300249465409232L;
public YdbResultTruncatedException(String reason) {
super(reason);
}
}