com.palominolabs.config.ConfigException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of config-inject Show documentation
Show all versions of config-inject Show documentation
Configuration system using Guice and config-magic
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