org.n3r.eql.ex.EqlExecuteException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eql Show documentation
Show all versions of eql Show documentation
a simple wrapper framework for jdbc to seperate sql and java code
package org.n3r.eql.ex;
public class EqlExecuteException extends EqlException {
private static final long serialVersionUID = -4580346119774034899L;
public EqlExecuteException(String msg) {
super(msg);
}
public EqlExecuteException(Throwable e) {
super(e);
}
public EqlExecuteException(String msg, Throwable e) {
super(msg, e);
}
}