Package org.apache.flink.types
Class DeserializationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.flink.types.DeserializationException
-
- All Implemented Interfaces:
Serializable
@Public public class DeserializationException extends RuntimeException
An exception specifying that the deserialization caused an error.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DeserializationException()Constructs anDeserializationExceptionwithnullas its error detail message.DeserializationException(String message)Constructs anDeserializationExceptionwith the specified detail message.DeserializationException(String message, Throwable cause)Constructs anDeserializationExceptionwith the specified detail message and cause.DeserializationException(Throwable cause)Constructs anDeserializationExceptionwith the specified 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
-
DeserializationException
public DeserializationException()
Constructs anDeserializationExceptionwithnullas its error detail message.
-
DeserializationException
public DeserializationException(String message, Throwable cause)
Constructs anDeserializationExceptionwith the specified detail message and cause.- Parameters:
message- The detail message.cause- The cause of the exception.
-
DeserializationException
public DeserializationException(String message)
Constructs anDeserializationExceptionwith the specified detail message.- Parameters:
message- The detail message.
-
DeserializationException
public DeserializationException(Throwable cause)
Constructs anDeserializationExceptionwith the specified cause.- Parameters:
cause- The cause of the exception.
-
-