Package org.apache.ignite.binary
Class BinaryInvalidTypeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.ignite.IgniteException
-
- org.apache.ignite.binary.BinaryObjectException
-
- org.apache.ignite.binary.BinaryInvalidTypeException
-
- All Implemented Interfaces:
Serializable
public class BinaryInvalidTypeException extends BinaryObjectException
Exception indicating that class needed for deserialization of binary object does not exist.Thrown from
BinaryObject.deserialize()
method.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BinaryInvalidTypeException(String msg)
Creates invalid class exception with error message.BinaryInvalidTypeException(String msg, @Nullable Throwable cause)
Creates invalid class exception with error message andThrowable
as a cause.BinaryInvalidTypeException(Throwable cause)
Creates invalid class exception withThrowable
as a cause.
-
Method Summary
-
Methods inherited from class org.apache.ignite.IgniteException
getCause, hasCause, toString
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
BinaryInvalidTypeException
public BinaryInvalidTypeException(String msg)
Creates invalid class exception with error message.- Parameters:
msg
- Error message.
-
BinaryInvalidTypeException
public BinaryInvalidTypeException(Throwable cause)
Creates invalid class exception withThrowable
as a cause.- Parameters:
cause
- Cause.
-
-