Class ConfigurationException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ConfigurationException
    extends AbstractRuntimeException
    Thrown when a configuration error is detected. See the message text for more specifics.
    Since:
    1.1
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ConfigurationException​(java.lang.String message)
      Constructs a ConfigurationException with the specified message.
      ConfigurationException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a ConfigurationException with the specified message and root cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, 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)
        Constructs a ConfigurationException with the specified message.
        Parameters:
        message - the detail message (which is saved for later retrieval by the AbstractRuntimeException.getMessage() method).
      • ConfigurationException

        public ConfigurationException​(java.lang.String message,
                                      java.lang.Throwable cause)
        Constructs a ConfigurationException with the specified message and root cause.
        Parameters:
        message - the detail message (which is saved for later retrieval by the AbstractRuntimeException.getMessage() method).
        cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)