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

org.sql2o.Sql2oException Maven / Gradle / Ivy

package org.sql2o;

/**
 * Represents an exception thrown by Sql2o.
 */
public class Sql2oException extends RuntimeException {

    public Sql2oException() {
    }

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

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

    public Sql2oException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy