cn.pomit.mybatis.exception.ProxyErrorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mybatis-proxy Show documentation
Show all versions of mybatis-proxy Show documentation
easily use mybatis on non-spring project
The newest version!
package cn.pomit.mybatis.exception;
public class ProxyErrorException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 1030141168368890994L;
public ProxyErrorException() {
super();
}
public ProxyErrorException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public ProxyErrorException(String message, Throwable cause) {
super(message, cause);
}
public ProxyErrorException(String message) {
super(message);
}
public ProxyErrorException(Throwable cause) {
super(cause);
}
}