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 Summary
Constructors Constructor Description BinaryObjectException(String msg)
Creates binary exception with error message.BinaryObjectException(String msg, @Nullable Throwable cause)
Creates binary exception with error message andThrowable
as a cause.BinaryObjectException(Throwable cause)
Creates binary 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
-
BinaryObjectException
public BinaryObjectException(String msg)
Creates binary exception with error message.- Parameters:
msg
- Error message.
-
BinaryObjectException
public BinaryObjectException(Throwable cause)
Creates binary exception withThrowable
as a cause.- Parameters:
cause
- Cause.
-
-