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

com.sitture.env.config.MissingVariableException Maven / Gradle / Ivy

Go to download

A simple utility to manage environment configs in Java-based projects by merging *.properties files with environment variables overrides.

There is a newer version: 1.1.1
Show newest version
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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy