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

com.github.bingoohuang.utils.config.ex.ConfigException Maven / Gradle / Ivy

There is a newer version: 0.0.25
Show newest version
package com.github.bingoohuang.utils.config.ex;

public class ConfigException extends RuntimeException {

    private static final long serialVersionUID = 6278916573612646289L;

    public ConfigException(String msg) {
        super(msg);
    }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy