io.github.sinri.keel.mysql.exception.KeelMySQLException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Keel Show documentation
Show all versions of Keel Show documentation
A website framework with VERT.X for ex-PHP-ers, exactly Ark Framework Users.
The newest version!
package io.github.sinri.keel.mysql.exception;
/**
* @since 2.8
*/
public class KeelMySQLException extends Exception {
public KeelMySQLException(String msg) {
super(msg);
}
public KeelMySQLException(String msg, Throwable cause) {
super(msg, cause);
}
public KeelMySQLException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy