Class InvalidTypesException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.flink.api.common.InvalidProgramException
-
- org.apache.flink.api.common.functions.InvalidTypesException
-
- All Implemented Interfaces:
Serializable
@Public public class InvalidTypesException extends InvalidProgramException
A special case of theInvalidProgramException, indicating that the types used in an operation are invalid or inconsistent.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidTypesException()Creates a new exception with no message.InvalidTypesException(String message)Creates a new exception with the given message.InvalidTypesException(String message, Throwable e)
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
InvalidTypesException
public InvalidTypesException()
Creates a new exception with no message.
-
InvalidTypesException
public InvalidTypesException(String message)
Creates a new exception with the given message.- Parameters:
message- The exception message.
-
-