Class AsynchronousFailureException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.batch.item.ItemWriterException
org.springframework.batch.integration.chunk.AsynchronousFailureException
- All Implemented Interfaces:
Serializable
Exception indicating that a failure or early completion condition was detected in a
remote worker.
- Author:
- Dave Syer
- See Also:
-
Constructor Summary
ConstructorDescriptionAsynchronousFailureException
(String message) Create a newAsynchronousFailureException
based on a message.AsynchronousFailureException
(String message, Throwable cause) Create a newAsynchronousFailureException
based on a message and another exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AsynchronousFailureException
Create a newAsynchronousFailureException
based on a message and another exception.- Parameters:
message
- the message for this exceptioncause
- the other exception
-
AsynchronousFailureException
Create a newAsynchronousFailureException
based on a message.- Parameters:
message
- the message for this exception
-