Class ConfigurationRuntimeException

    • 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.
      ConfigurationRuntimeException​(java.lang.Throwable cause, java.lang.String format, java.lang.Object... params)
      Constructs a new ConfigurationRuntimeException with specified detail message.
    • 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.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.
      • 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.Throwable cause,
                                             java.lang.String format,
                                             java.lang.Object... params)
        Constructs a new ConfigurationRuntimeException with specified detail message.
        Parameters:
        format - the error message for for String.format(String, Object...).
        params - the error parameters for for String.format(String, Object...).
        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.)
        Since:
        2.14.0