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 SummaryConstructors 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 andThrowableas a cause.BinaryInvalidTypeException(Throwable cause)Creates invalid class exception withThrowableas a cause.
 - 
Method Summary- 
Methods inherited from class org.apache.ignite.IgniteExceptiongetCause, hasCause, toString
 - 
Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
- 
 
- 
- 
- 
Constructor Detail- 
BinaryInvalidTypeExceptionpublic BinaryInvalidTypeException(String msg) Creates invalid class exception with error message.- Parameters:
- msg- Error message.
 
 - 
BinaryInvalidTypeExceptionpublic BinaryInvalidTypeException(Throwable cause) Creates invalid class exception withThrowableas a cause.- Parameters:
- cause- Cause.
 
 
- 
 
-