com.sitture.env.config.MissingVariableException 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.sitture.env.config;
public class MissingVariableException extends RuntimeException {
private static final long serialVersionUID = 1L;
public MissingVariableException(Throwable e) {
super(e);
}
public MissingVariableException(String message, Throwable e) {
super(message, e);
}
public MissingVariableException(String message) {
super(message);
}
}