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

nyla.solutions.core.exception.ConfigException Maven / Gradle / Ivy

Go to download

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy