All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yandex.ydb.jdbc.exception.YdbConfigurationException Maven / Gradle / Ivy

There is a newer version: 1.45.6
Show newest version
package com.yandex.ydb.jdbc.exception;

import java.sql.SQLException;

public class YdbConfigurationException extends SQLException {

    public YdbConfigurationException(String message) {
        super(message);
    }

    public YdbConfigurationException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy