Package org.apache.ignite.binary
Class BinaryObjectException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- org.apache.ignite.IgniteException
- 
- org.apache.ignite.binary.BinaryObjectException
 
 
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 - Direct Known Subclasses:
- BinaryInvalidTypeException
 
 public class BinaryObjectException extends IgniteException Exception indicating binary object serialization error.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description BinaryObjectException(String msg)Creates binary exception with error message.BinaryObjectException(String msg, @Nullable Throwable cause)Creates binary exception with error message andThrowableas a cause.BinaryObjectException(Throwable cause)Creates binary 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- 
BinaryObjectExceptionpublic BinaryObjectException(String msg) Creates binary exception with error message.- Parameters:
- msg- Error message.
 
 - 
BinaryObjectExceptionpublic BinaryObjectException(Throwable cause) Creates binary exception withThrowableas a cause.- Parameters:
- cause- Cause.
 
 
- 
 
-