com.tacitknowledge.slowlight.proxyserver.config.ConfigException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of slowlight-proxy Show documentation
Show all versions of slowlight-proxy Show documentation
Standalone proxy tool for creating issues with synchronous RPC calls
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