cn.sylinx.hbatis.exception.MappingFileNotFoundException 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
package cn.sylinx.hbatis.exception;
@SuppressWarnings("serial")
public class MappingFileNotFoundException extends HbatisException {
public MappingFileNotFoundException() {
super();
}
public MappingFileNotFoundException(String message) {
super(message);
}
public MappingFileNotFoundException(String message, Throwable cause) {
super(message, cause);
}
public MappingFileNotFoundException(Throwable cause) {
super(cause);
}
}