com.wizarius.orm.database.DBException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wizarius-orm Show documentation
Show all versions of wizarius-orm Show documentation
Java orm for Postgres or Mysql with migration system and connection pool
The newest version!
package com.wizarius.orm.database;
/**
* @author Vladyslav Shyshkin on 21.01.17.
*/
public class DBException extends Exception {
public DBException(Throwable cause) {
super(cause);
}
public DBException(String message, Throwable cause) {
super(message + cause.getMessage(), cause);
}
public DBException(String message){
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy