org.liquidsite.app.servlet
Class ConfigurationException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.liquidsite.app.servlet.ConfigurationException
All Implemented Interfaces:
java.io.Serializable

public class ConfigurationException
extends java.lang.Exception

A configuration exception. This exception is thrown when the configuration file or database table couldn't be properly read or written.

See Also:
Serialized Form

Constructor Summary
ConfigurationException(java.lang.Exception cause)
          Creates a new configuration exception.
ConfigurationException(java.lang.String message)
          Creates a new configuration exception.
ConfigurationException(java.lang.String message, java.lang.Exception cause)
          Creates a new configuration exception.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ConfigurationException

public ConfigurationException(java.lang.String message)
Creates a new configuration exception.

Parameters:
message - the error message

ConfigurationException

public ConfigurationException(java.lang.Exception cause)
Creates a new configuration exception.

Parameters:
cause - the root cause to the error

ConfigurationException

public ConfigurationException(java.lang.String message,
                              java.lang.Exception cause)
Creates a new configuration exception.

Parameters:
message - the error message
cause - the root cause to the error