com.github.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.github.sitture.env.config;
public class MissingVariableException extends RuntimeException {
private static final long serialVersionUID = 1L;
public MissingVariableException(Throwable error) {
super(error);
}
public MissingVariableException(String message, Throwable error) {
super(message, error);
}
public MissingVariableException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy