Class ConfigurationException

  • All Implemented Interfaces:
    java.io.Serializable, org.apache.commons.lang.exception.Nestable

    public class ConfigurationException
    extends org.apache.commons.lang.exception.NestableException
    Any exception that occurs while initializing a Configuration object.
    Version:
    $Id: ConfigurationException.java 1208784 2011-11-30 21:13:18Z oheger $
    Author:
    Eric Pugh
    See Also:
    Serialized Form
    • Field Summary

      • Fields inherited from class org.apache.commons.lang.exception.NestableException

        delegate
    • Constructor Summary

      Constructors 
      Constructor Description
      ConfigurationException()
      Constructs a new ConfigurationException without specified detail message.
      ConfigurationException​(java.lang.String message)
      Constructs a new ConfigurationException with specified detail message.
      ConfigurationException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new ConfigurationException with specified detail message and nested Throwable.
      ConfigurationException​(java.lang.Throwable cause)
      Constructs a new ConfigurationException with specified nested Throwable.
    • Method Summary

      • 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

        addSuppressed, fillInStackTrace, getLocalizedMessage, getStackTrace, getSuppressed, initCause, setStackTrace, 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​(java.lang.String message)
        Constructs a new ConfigurationException with specified detail message.
        Parameters:
        message - the error message
      • ConfigurationException

        public ConfigurationException​(java.lang.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​(java.lang.String message,
                                      java.lang.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