Class DataStreamerException

All Implemented Interfaces:
Serializable, TraceableException

public final class DataStreamerException extends IgniteException
Represents an exception that is thrown during data streaming. Includes information about failed items.
See Also:
  • Constructor Details

    • DataStreamerException

      public DataStreamerException(Set<?> failedItems, Throwable cause)
      Constructor.
      Parameters:
      failedItems - Set of failed items.
      cause - Cause of the exception.
    • DataStreamerException

      public DataStreamerException(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).
  • Method Details

    • failedItems

      public Set<?> failedItems()
      Gets the set of items that were not streamed to the cluster.
      Returns:
      Set of failed items.