public class ProcessingException extends MaybeRecoverableException
WorkflowProcessor
s or other processing components on errors while processing a record. The
component can set the recoverable flag to true to tell a caller that it is possible that the same call will be
successful on retry.Constructor and Description |
---|
ProcessingException(java.lang.String message)
constructor with message.
|
ProcessingException(java.lang.String message,
boolean recoverable)
constructor with message and recoverable flag.
|
ProcessingException(java.lang.String message,
java.lang.Throwable cause)
constructor with message and causing exception.
|
ProcessingException(java.lang.String message,
java.lang.Throwable cause,
boolean recoverable)
constructor with message, causing exception and recoverable flag.
|
ProcessingException(java.lang.Throwable cause)
constructor with causing exception.
|
ProcessingException(java.lang.Throwable cause,
boolean recoverable)
constructor with causing exception and recoverable flag.
|
isRecoverable, isRecoverableCause
public ProcessingException(java.lang.String message)
public ProcessingException(java.lang.Throwable cause)
public ProcessingException(java.lang.String message, java.lang.Throwable cause)
public ProcessingException(java.lang.String message, boolean recoverable)
public ProcessingException(java.lang.Throwable cause, boolean recoverable)
public ProcessingException(java.lang.String message, java.lang.Throwable cause, boolean recoverable)