Class TypeExtractionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.flink.api.java.typeutils.TypeExtractionException
-
- All Implemented Interfaces:
Serializable
@Internal public class TypeExtractionException extends Exception
Type extraction always contains some uncertainty due to unpredictable JVM differences between vendors or versions. This exception is thrown if an assumption failed during extraction.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TypeExtractionException()
Creates a new exception with no message.TypeExtractionException(String message)
Creates a new exception with the given message.TypeExtractionException(String message, Throwable e)
Creates a new exception with the given message and 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
-
TypeExtractionException
public TypeExtractionException()
Creates a new exception with no message.
-
TypeExtractionException
public TypeExtractionException(String message)
Creates a new exception with the given message.- Parameters:
message
- The exception message.
-
-