Class ConfigurationRuntimeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.commons.configuration2.ex.ConfigurationRuntimeException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ConversionException

A configuration related runtime exception.
Since:
1.0
See Also:
  • Constructor Details

    • ConfigurationRuntimeException

      Constructs a new ConfigurationRuntimeException without specified detail message.
    • ConfigurationRuntimeException

      Constructs a new ConfigurationRuntimeException with specified detail message.
      Parameters:
      message - the error message
    • ConfigurationRuntimeException

      public ConfigurationRuntimeException(String message, Object... args)
      Constructs a new ConfigurationRuntimeException with specified detail message using String.format(String,Object...).
      Parameters:
      message - the error message
      args - arguments to the error message
      See Also:
    • ConfigurationRuntimeException

      Constructs a new ConfigurationRuntimeException with specified nested Throwable.
      Parameters:
      cause - the exception or error that caused this exception to be thrown
    • ConfigurationRuntimeException

      Constructs a new ConfigurationRuntimeException with specified detail message and nested Throwable.
      Parameters:
      message - the error message
      cause - the exception or error that caused this exception to be thrown