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

top.doudou.common.tool.exception.InvalidException Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package top.doudou.common.tool.exception;


import lombok.extern.slf4j.Slf4j;

/**
 * 无效异常(参数、方法、调用等)
 * @author 傻男人<[email protected]>
 * @create 2018-09-18-14:56
 */
@Slf4j
public class InvalidException extends CustomException {

    public InvalidException(String message) {
        super(message);
    }

    public InvalidException(String message, Object... parameters){
        super(message(message,parameters));
    }

    public InvalidException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy