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

cn.tom.db.jdbc.DBException Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package cn.tom.db.jdbc;


public class DBException extends RuntimeException {
	private static final long serialVersionUID = 1L;

	public DBException() {
		super();
	}

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

	public DBException(String msg, Throwable throwable) {
		super(msg, throwable);
	}

	public DBException(Throwable throwable) {
		super(throwable);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy