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

io.github.sinri.keel.mysql.exception.KeelSQLResultRowIndexError Maven / Gradle / Ivy

Go to download

A website framework with VERT.X for ex-PHP-ers, exactly Ark Framework Users.

The newest version!
package io.github.sinri.keel.mysql.exception;

public class KeelSQLResultRowIndexError extends Exception {
    public KeelSQLResultRowIndexError(String message) {
        super(message);
    }

    public KeelSQLResultRowIndexError(String message, Throwable throwable) {
        super(message, throwable);
    }

    public KeelSQLResultRowIndexError(Throwable throwable) {
        super(throwable);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy