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

ch.inftec.ju.db.JuDbException Maven / Gradle / Ivy

There is a newer version: 4.5.1-11
Show 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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy