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

se.l4.commons.config.ConfigException Maven / Gradle / Ivy

There is a newer version: 0.4.2
Show newest version
package se.l4.commons.config;

/**
 * Exception thrown when something is wrong with the configuration.
 * 
 * @author Andreas Holstenson
 *
 */
public class ConfigException
	extends RuntimeException
{

	public ConfigException()
	{
		super();
	}

	public ConfigException(String message, Throwable cause)
	{
		super(message, cause);
	}

	public ConfigException(String message)
	{
		super(message);
	}

	public ConfigException(Throwable cause)
	{
		super(cause);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy