tech.ydb.jdbc.exception.YdbConfigurationException 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 java.sql.SQLException;
public class YdbConfigurationException extends SQLException {
private static final long serialVersionUID = -9023124863392765984L;
public YdbConfigurationException(String message) {
super(message);
}
public YdbConfigurationException(String message, Throwable cause) {
super(message, cause);
}
}