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

com.tacitknowledge.slowlight.proxyserver.config.ConfigException Maven / Gradle / Ivy

The newest version!
package com.tacitknowledge.slowlight.proxyserver.config;

/**
 * Slow-light configuration exception. This exception must be thrown whenever a configuration issue occurs.
 *
 * @author Alexandr Donciu ([email protected])
 */
public class ConfigException extends Exception
{
    public ConfigException(final String message)
    {
        super(message);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy