Class SkipWrapper<T>

java.lang.Object
org.springframework.batch.item.SkipWrapper<T>

public class SkipWrapper<T> extends Object
Wrapper for an item and its exception if it failed processing.
Author:
Dave Syer, Mahmoud Ben Hassine
  • Constructor Details

    • SkipWrapper

      public SkipWrapper(T item)
      Parameters:
      item - the item being wrapped.
    • SkipWrapper

      public SkipWrapper(T item, @Nullable Throwable e)
  • Method Details

    • getException

      @Nullable public Throwable getException()
      Public getter for the exception.
      Returns:
      the exception
    • getItem

      public T getItem()
      Public getter for the item.
      Returns:
      the item
    • toString

      public String toString()
      Overrides:
      toString in class Object