cn.sylinx.hbatis.exception.BlockException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbatis-core Show documentation
Show all versions of hbatis-core Show documentation
hbatis is a simple orm framework
The newest version!
package cn.sylinx.hbatis.exception;
/**
* 块执行错误
*
* @author han
*
*/
@SuppressWarnings("serial")
public class BlockException extends Exception {
public BlockException() {
super();
}
public BlockException(String message) {
super(message);
}
public BlockException(String message, Throwable cause) {
super(message, cause);
}
public BlockException(Throwable cause) {
super(cause);
}
}