ch.inftec.ju.db.JuDbException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ju-dbutil Show documentation
Show all versions of ju-dbutil Show documentation
DB related utility functions
The newest version!
package ch.inftec.ju.db;
import ch.inftec.ju.util.JuRuntimeException;
/**
* DB relation exception. The exception is a runtime exception so it doesn't
* need to be declared all the time.
* @author Martin
*
*/
public class JuDbException extends JuRuntimeException {
public JuDbException() {
}
public JuDbException(String message) {
super(message);
}
public JuDbException(Throwable cause) {
super(cause);
}
public JuDbException(String message, Throwable cause) {
super(message, cause);
}
}