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

com.palominolabs.config.ConfigException Maven / Gradle / Ivy

The newest version!
package com.palominolabs.config;

/**
 * Generally failures in loading configuration are fatal, so this is an unchecked exception to make the common case less
 * verbose.
 */
public final class ConfigException extends RuntimeException {
    ConfigException(String message) {
        super(message);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy