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

net.morimekta.config.ConfigException Maven / Gradle / Ivy

There is a newer version: 2.7.1
Show newest version
package net.morimekta.config;

/**
 * Created by morimekta on 2/25/16.
 */
public class ConfigException extends Exception {
    public ConfigException(String message, Object... params) {
        super(String.format(message, params));
    }

    public ConfigException(Throwable throwable, String message, Object... params) {
        super(String.format(message, params), throwable);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy