Class MarshallerException

All Implemented Interfaces:
Serializable, TraceableException

public class MarshallerException extends IgniteException
This exception is caused by a failure to marshall or unmarshall a value. The failure can be due to a value not matching the a schema or to another reason.
See Also:
  • Constructor Details

    • MarshallerException

      @Deprecated public MarshallerException(Throwable cause)
      Deprecated.
      Creates a new exception with the given error message.
      Parameters:
      cause - Non-null throwable cause.
    • MarshallerException

      public MarshallerException(String msg, @Nullable @Nullable Throwable cause)
      Creates a new exception with the given error message.
      Parameters:
      msg - Error message.
      cause - Non-null throwable cause.
    • MarshallerException

      public MarshallerException(UUID traceId, int code, String message, @Nullable @Nullable Throwable cause)
      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 be null).