com.github.ltsopensource.kv.DBException Maven / Gradle / Ivy
package com.github.ltsopensource.kv;
/**
* @author Robert HG ([email protected]) on 12/13/15.
*/
public class DBException extends RuntimeException {
public DBException() {
super();
}
public DBException(String s) {
super(s);
}
public DBException(String s, Throwable throwable) {
super(s, throwable);
}
public DBException(Throwable throwable) {
super(throwable);
}
}