Class CorruptConfigurationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.flink.runtime.operators.util.CorruptConfigurationException
-
- All Implemented Interfaces:
Serializable
public class CorruptConfigurationException extends RuntimeException
Exception indicating that the parsed configuration was corrupt. Corruption typically means missing or invalid values.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CorruptConfigurationException(String message)Creates a new exception with the given error message.CorruptConfigurationException(String message, Throwable cause)
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
CorruptConfigurationException
public CorruptConfigurationException(String message)
Creates a new exception with the given error message.- Parameters:
message- The exception's message.
-
-