com.jfplugin.xsql.exception.StatementException Maven / Gradle / Ivy
The newest version!
package com.jfplugin.xsql.exception;
/**
*
* @author farmer
*
*/
public class StatementException extends RuntimeException{
/**
*
*/
private static final long serialVersionUID = -3646390896908928605L;
public StatementException() {
super();
}
public StatementException(String message, Throwable cause) {
super(message, cause);
}
public StatementException(String message) {
super(message);
}
}