se.l4.commons.config.ConfigException Maven / Gradle / Ivy
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);
}
}