org.sql2o.Sql2oException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anima Show documentation
Show all versions of anima Show documentation
Operate the database like a stream
package org.sql2o;
/**
* Represents an exception thrown by Sql2o.
*/
public class Sql2oException extends RuntimeException {
private static final long serialVersionUID = -7941623550038122757L;
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