Class ItemStreamException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.batch.item.ItemStreamException
All Implemented Interfaces:
Serializable

public class ItemStreamException extends RuntimeException
Exception representing any errors encountered while processing a stream.
Author:
Dave Syer, Lucas Ward, Mahmoud Ben Hassine
See Also:
  • Constructor Details

    • ItemStreamException

      public ItemStreamException(String message)
      Parameters:
      message - the String that contains a detailed message.
    • ItemStreamException

      public ItemStreamException(String msg, Throwable nested)
      Constructs a new instance with a message and nested exception.
      Parameters:
      msg - the exception message.
      nested - the cause of the exception.
    • ItemStreamException

      public ItemStreamException(Throwable nested)
      Constructs a new instance with a nested exception and empty message.
      Parameters:
      nested - the cause of the exception.