top.lingkang.mm.error.MagicException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mybatis-magic Show documentation
Show all versions of mybatis-magic Show documentation
mybatis能力扩展框架,兼顾mybatis的mapper.xml编写操作数据库。
The newest version!
package top.lingkang.mm.error;
/**
* @Author lingkang
* @Date 2024/2/29 16:50
*/
public class MagicException extends RuntimeException{
public MagicException() {
}
public MagicException(String message) {
super(message);
}
public MagicException(String message, Throwable cause) {
super(message, cause);
}
public MagicException(Throwable cause) {
super(cause);
}
public MagicException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}