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

tech.ydb.jdbc.exception.YdbExecutionException Maven / Gradle / Ivy

There is a newer version: 2.3.5
Show newest version
package tech.ydb.jdbc.exception;

import java.sql.SQLException;

public class YdbExecutionException extends SQLException {
    private static final long serialVersionUID = -9189855688894485591L;

    public YdbExecutionException(String reason) {
        super(reason);
    }

    public YdbExecutionException(String reason, Throwable cause) {
        super(reason, cause);
    }

    public YdbExecutionException(String reason, String SQLState, int vendorCode) {
        super(reason, SQLState, vendorCode);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy