org.apache.commons.configuration
Class ConfigurationException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--org.apache.commons.lang.exception.NestableException
                    |
                    +--org.apache.commons.configuration.ConfigurationException
All Implemented Interfaces:
Nestable, Serializable

public class ConfigurationException
extends NestableException

Any exception that occurs while initializing a Configuration object.

Version:
$Revision$, $Date: 2005-02-26 13:56:39 +0100 (Sat, 26 Feb 2005) $
Author:
Eric Pugh
See Also:
Serialized Form

Fields inherited from class org.apache.commons.lang.exception.NestableException
delegate
 
Constructor Summary
ConfigurationException()
          Constructs a new ConfigurationException without specified detail message.
ConfigurationException(String message)
          Constructs a new ConfigurationException with specified detail message.
ConfigurationException(String message, Throwable cause)
          Constructs a new ConfigurationException with specified detail message and nested Throwable.
ConfigurationException(Throwable cause)
          Constructs a new ConfigurationException with specified nested Throwable.
 
Methods inherited from class org.apache.commons.lang.exception.NestableException
getCause, getMessage, getMessage, getMessages, getThrowable, getThrowableCount, getThrowables, indexOfThrowable, indexOfThrowable, printPartialStackTrace, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ConfigurationException

public ConfigurationException()
Constructs a new ConfigurationException without specified detail message.

ConfigurationException

public ConfigurationException(String message)
Constructs a new ConfigurationException with specified detail message.
Parameters:
message - the error message

ConfigurationException

public ConfigurationException(Throwable cause)
Constructs a new ConfigurationException with specified nested Throwable.
Parameters:
cause - the exception or error that caused this exception to be thrown

ConfigurationException

public ConfigurationException(String message,
                              Throwable cause)
Constructs a new ConfigurationException with specified detail message and nested Throwable.
Parameters:
message - the error message
cause - the exception or error that caused this exception to be thrown


Copyright © 2001-2005 The Apache Software Foundation. All Rights Reserved.