Package org.apache.ignite.marshalling
Class MarshallingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.ignite.lang.IgniteException
org.apache.ignite.marshalling.MarshallingException
- All Implemented Interfaces:
Serializable
,TraceableException
Exception thrown when an object type is not supported by the marshaller.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionMarshallingException
(String msg, @Nullable Throwable cause) Creates an exception with the given message and cause.MarshallingException
(UUID traceId, int code, String message, Throwable cause) Creates an exception with the given trace ID, error code, detailed message, and cause. -
Method Summary
Methods inherited from class org.apache.ignite.lang.IgniteException
code, codeAsString, errorCode, groupCode, groupName, toString, traceId
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
MarshallingException
Creates an exception with the given message and cause.- Parameters:
msg
- Message.cause
- The exception that caused the error.
-
MarshallingException
Creates an exception with the given trace ID, error code, detailed message, and cause.- Parameters:
traceId
- Unique identifier of the exception.code
- Full error code.message
- Detailed message.cause
- Optional nested exception (can benull
).
-