com.darwinsys.database.DataBaseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of darwinsys-api Show documentation
Show all versions of darwinsys-api Show documentation
Ian Darwin's assorted Java stuff,
assembled as an API.
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);
}
}