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

top.doudou.common.tool.exception.NotInitedException 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 NotInitedException extends CustomException {

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy