Class ConfigurationRuntimeException

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

    public class ConfigurationRuntimeException
    extends java.lang.RuntimeException
    A configuration related runtime exception.
    Since:
    1.0
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ConfigurationRuntimeException()
      Constructs a new ConfigurationRuntimeException without specified detail message.
      ConfigurationRuntimeException​(java.lang.String message)
      Constructs a new ConfigurationRuntimeException with specified detail message.
      ConfigurationRuntimeException​(java.lang.String message, java.lang.Object... args)
      Constructs a new ConfigurationRuntimeException with specified detail message using String.format(String,Object...).
      ConfigurationRuntimeException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new ConfigurationRuntimeException with specified detail message and nested Throwable.
      ConfigurationRuntimeException​(java.lang.Throwable cause)
      Constructs a new ConfigurationRuntimeException with specified nested Throwable.
    • 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

      • ConfigurationRuntimeException

        public ConfigurationRuntimeException()
        Constructs a new ConfigurationRuntimeException without specified detail message.
      • ConfigurationRuntimeException

        public ConfigurationRuntimeException​(java.lang.String message)
        Constructs a new ConfigurationRuntimeException with specified detail message.
        Parameters:
        message - the error message
      • ConfigurationRuntimeException

        public ConfigurationRuntimeException​(java.lang.String message,
                                             java.lang.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:
        String.format(String,Object...)
      • ConfigurationRuntimeException

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

        public ConfigurationRuntimeException​(java.lang.String message,
                                             java.lang.Throwable cause)
        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