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

com.hn.config.exception.ConfigException Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.hn.config.exception;

/**
 * 描述:
 * 配置异常
 *
 * @author shilvfei
 *  2019-01-10 19:13
 */
public class ConfigException extends RuntimeException {
    public ConfigException() {
    }
    public ConfigException(String message) {
        super(message);
    }

    public ConfigException(String message, Throwable cause) {
        super(message, cause);
    }

    public static ConfigException exception(String message){
        return new ConfigException(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy