![JAR search and dependency download from the Maven repository](/logo.png)
org.liveSense.api.sql.exceptions.SQLException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.liveSense.service.dataSourceProvider Show documentation
Show all versions of org.liveSense.service.dataSourceProvider Show documentation
Simple DBCP pooled datasource provider.
The newest version!
package org.liveSense.api.sql.exceptions;
import java.io.Serializable;
public class SQLException extends Exception implements Serializable {
/**
*
*/
private static final long serialVersionUID = 2373880253277343932L;
private String msg;
public SQLException() {
super();
}
public SQLException(String msg) {
super(msg);
this.msg = msg;
}
public SQLException(Throwable cause) {
super(cause);
this.msg = cause.getMessage();
}
public SQLException(String msg, Throwable cause) {
super(msg, cause);
this.msg = msg;
}
public String getMessage() {
return msg;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy