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

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

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

/**
 * Created by steineldar on 3/1/16.
 */
public class UncheckedConfigException extends RuntimeException {
    public UncheckedConfigException(ConfigException e) {
        super(e);
    }

    public ConfigException getCause() {
        return (ConfigException) super.getCause();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy