Class ConfigurationException

    • Constructor Detail

      • ConfigurationException

        public ConfigurationException​(String message,
                                      Object... args)
        Constructs a new exception with the specified detail message. A detail message is a String that describes this particular exception.
        Parameters:
        message - the detailed message, which is saved for later retrieval by the Throwable.getMessage() method
        args - arguments to the message format, as in String.format(String, Object...)
      • ConfigurationException

        public ConfigurationException​(Throwable cause,
                                      String message,
                                      Object... args)
        Constructs a new exception with the specified detail message and cause.
        Parameters:
        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)
        message - the detail message, which is saved for later retrieval by the Throwable.getMessage() method
        args - arguments to the message format, as in String.format(String, Object...)
      • ConfigurationException

        public ConfigurationException​(Throwable cause)
        Constructs a new exception with the specified cause. This constructor is useful for exceptions that are wrappers for other throwables.
        Parameters:
        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.