Class IllegalConfigurationException

  • All Implemented Interfaces:
    Serializable

    @PublicEvolving
    public class IllegalConfigurationException
    extends RuntimeException
    An IllegalConfigurationException is thrown when the values in a given Configuration are not valid. This may refer to the Flink configuration with which the framework is started, or a Configuration passed internally between components.
    See Also:
    Serialized Form
    • Constructor Detail

      • IllegalConfigurationException

        public IllegalConfigurationException​(String message)
        Constructs an new IllegalConfigurationException with the given error message.
        Parameters:
        message - The error message for the exception.
      • IllegalConfigurationException

        public IllegalConfigurationException​(String format,
                                             Object... arguments)
        Constructs an new IllegalConfigurationException with the given error message format and arguments.
        Parameters:
        format - The error message format for the exception.
        arguments - The arguments for the format.
      • IllegalConfigurationException

        public IllegalConfigurationException​(String message,
                                             Throwable cause)
        Constructs an new IllegalConfigurationException with the given error message and a given cause.
        Parameters:
        message - The error message for the exception.
        cause - The exception that caused this exception.