tech.ydb.jdbc.exception.YdbRuntimeException 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 YdbRuntimeException extends RuntimeException {
private static final long serialVersionUID = 7195253335276429670L;
public YdbRuntimeException(String message) {
super(message);
}
public YdbRuntimeException(String message, Throwable cause) {
super(message, cause);
}
}