org.liveSense.api.sql.exceptions.NoDataSourceFound 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;
public class NoDataSourceFound extends Exception {
private static final long serialVersionUID = 5464666306275408477L;
public NoDataSourceFound(Throwable e) {
super(e);
}
public NoDataSourceFound(String message) {
super(message);
}
public NoDataSourceFound(String message, Throwable e) {
super(message, e);
}
}