nyla.solutions.core.exception.ConfigException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nyla.solutions.core Show documentation
Show all versions of nyla.solutions.core Show documentation
This Java API provides support for application utilities (application configuration, data encryption, debugger, text processing, and more).
The newest version!
/*
* Created on Feb 6, 2004
*
* ConnectionException
*/
package nyla.solutions.core.exception;
/**
* @author Gregory Grene
* @version 1.0
*
* ConnectionException
*
*/
public class ConfigException extends FatalException
{
public static final String DEFAULT_ERROR_CODE = "CONF000";
/**
* @param aMessage the message
*/
public ConfigException(String aMessage)
{
super(aMessage);
this.setCode(DEFAULT_ERROR_CODE);
}//---------------------------------------------
/**
* @param aMessage configuration
* @param aThrowable
*/
public ConfigException(String aMessage, Throwable aThrowable)
{
super(aMessage, aThrowable);
this.setCode(DEFAULT_ERROR_CODE);
}//---------------------------------------------\
/**
* @param aThrowable
*/
public ConfigException(Throwable aThrowable)
{
super(aThrowable);
this.setCode(DEFAULT_ERROR_CODE);
}// --------------------------------------------
static final long serialVersionUID = ConfigException.class.getName()
.hashCode();
}