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 Summary
ConstructorDescriptionItemStreamException
(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 Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ItemStreamException
- Parameters:
message
- the String that contains a detailed message.
-
ItemStreamException
Constructs a new instance with a message and nested exception.- Parameters:
msg
- the exception message.nested
- the cause of the exception.
-
ItemStreamException
Constructs a new instance with a nested exception and empty message.- Parameters:
nested
- the cause of the exception.
-