All Downloads are FREE. Search and download functionalities are using the official Maven repository.

top.lingkang.mm.error.MagicException Maven / Gradle / Ivy

Go to download

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy