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

com.darwinsys.database.DataBaseException Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package com.darwinsys.database;

/** Checked Exception DataBase Failures, so application code
 * outside of DAOs and the like does not need to know SQLException.
 */
public class DataBaseException extends RuntimeException {

	private static final long serialVersionUID = 3257572810388681269L;

	public DataBaseException() {
		super();
	}
	public DataBaseException(String msg) {
		super(msg);
	}

	public DataBaseException(String msg, Throwable e) {
		super(msg, e);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy