Package org.springframework.batch.item
Class ItemStreamException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.batch.item.ItemStreamException
- All Implemented Interfaces:
- Serializable
Exception representing any errors encountered while processing a stream.
- Author:
- Dave Syer, Lucas Ward, Mahmoud Ben Hassine
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionItemStreamException(String message) ItemStreamException(String msg, Throwable nested) Constructs a new instance with a message and nested exception.ItemStreamException(Throwable nested) Constructs a new instance with a nested exception and empty message.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
ItemStreamException- Parameters:
- message- the String that contains a detailed message.
 
- 
ItemStreamExceptionConstructs a new instance with a message and nested exception.- Parameters:
- msg- the exception message.
- nested- the cause of the exception.
 
- 
ItemStreamExceptionConstructs a new instance with a nested exception and empty message.- Parameters:
- nested- the cause of the exception.
 
 
-