
com.github.sitture.envconfig.EnvConfigException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of env-config Show documentation
Show all versions of env-config Show documentation
A simple utility to manage environment configs in Java-based projects by merging *.properties files with environment variables overrides.
package com.github.sitture.envconfig;
public class EnvConfigException extends RuntimeException {
private static final long serialVersionUID = 1L;
/**
* Constructs a new runtime exception.
*
* @param error a {@link java.lang.Throwable} object.
*/
public EnvConfigException(final Throwable error) {
super(error);
}
/**
* Constructs a new runtime exception.
*
* @param message a {@link java.lang.String} object.
* @param error a {@link java.lang.Throwable} object.
*/
public EnvConfigException(final String message, final Throwable error) {
super(message, error);
}
/**
* Constructs a new runtime exception.
*
* @param message a {@link java.lang.String} object.
*/
public EnvConfigException(final String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy