Class ConfigurationException

  • All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    MissingParameterException

    public class ConfigurationException
    extends java.lang.IllegalStateException
    An unchecked illegal state exception to indicate that the system is not configured correctly for some operation. For example, this exception might be thrown if no appropriate parser is available or a particular character encoding is not supported.
    Author:
    Garret Wilson
    See Also:
    Serialized Form
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, 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​(@Nullable
                                      java.lang.String message)
        Message constructor.
        Parameters:
        message - An explanation of why the input could not be parsed, or null if a default message should be used.
      • ConfigurationException

        public ConfigurationException​(@Nullable
                                      java.lang.Throwable cause)
        Cause constructor.
        Parameters:
        cause - The cause error or null if the cause is nonexistent or unknown.
      • ConfigurationException

        public ConfigurationException​(@Nullable
                                      java.lang.String message,
                                      @Nullable
                                      java.lang.Throwable cause)
        Message and cause constructor.
        Parameters:
        message - An explanation of why the input could not be parsed, or null if a default message should be used.
        cause - The cause error or null if the cause is nonexistent or unknown.