public class CallbackException extends ProcessingLibraryException
| Constructor and Description |
|---|
CallbackException(java.lang.String message,
java.lang.Exception e,
ProgressStatus status)
Initializes a new
CallbackException with a message, inner exception, and status. |
CallbackException(java.lang.String message,
ProgressStatus status)
Initializes a new
CallbackException with a message and status. |
getStatuspublic CallbackException(java.lang.String message,
ProgressStatus status)
CallbackException with a message and status.message - A string that provides information about the exception.status - The ProgressStatus of the operation that was in progress when the exception occurred.public CallbackException(java.lang.String message,
java.lang.Exception e,
ProgressStatus status)
CallbackException with a message, inner exception, and status.message - A string that provides information about the exception.e - An inner exception that is carried along with this exception.status - The ProgressStatus of the operation that was in progress when the exception occurred.