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

com.dieselpoint.norm.DbException Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
package com.dieselpoint.norm;

@SuppressWarnings("serial")

/**
 * Generic unchecked database exception. 
 */
public class DbException extends RuntimeException {
	
	private String sql;
	
	public DbException() {}
	
	public DbException(String msg) {
		super(msg);
	}

	public DbException(Throwable t) {
		super(t);
	}

	public DbException(String msg, Throwable t) {
		super(msg, t);
	}
	
	public void setSql(String sql) {
		this.sql = sql;
	}
	
	public String getSql() {
		return sql;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy