public class PendingException extends CommunicationException
Constructor and Description |
---|
PendingException()
Default Constructor.
|
PendingException(java.lang.String resourceBundleName,
java.lang.String messageKey,
java.lang.Object[] formatArguments,
java.lang.String defaultText)
Constructor with a localized message.
|
PendingException(java.lang.String resourceBundleName,
java.lang.String messageKey,
java.lang.Object[] formatArguments,
java.lang.String defaultText,
java.lang.Throwable exception)
Constructor with a localized message and a chained exception.
|
PendingException(java.lang.Throwable exception)
Constructor with a chained exception.
|
addProperties, addProperties, addProperty, dumpException, getClassSource, getDefaultMessage, getFormatArguments, getLocalizedMessage, getLocalizedMessage, getMessage, getMessageKey, getMethodSource, getPreviousException, getProperties, getResourceBundleName, setClassSource, setDefaultMessage, setFormatArguments, setMessageKey, setMethodSource, setPreviousException, setProperties, setResourceBundleName
public PendingException()
Default Constructor.
public PendingException(java.lang.String resourceBundleName, java.lang.String messageKey, java.lang.Object[] formatArguments, java.lang.String defaultText)
Constructor with a localized message.
resourceBundleName
- the name of the resource bundle to be used to generate a localized
exception messagemessageKey
- the key to identify the resource to generate a localized exceptionformatArguments
- an array of arguments to build the localized messagedefaultText
- the message that is shown if the localized message cannot be generatedpublic PendingException(java.lang.String resourceBundleName, java.lang.String messageKey, java.lang.Object[] formatArguments, java.lang.String defaultText, java.lang.Throwable exception)
Constructor with a localized message and a chained exception.
resourceBundleName
- the name of the resource bundle to be used to generate a localized
exception messagemessageKey
- the key to identify the resource to generate a localized exceptionformatArguments
- an array of arguments to build the localized messagedefaultText
- the message that is shown if the localized message cannot be generatedexception
- the exception to be chainedpublic PendingException(java.lang.Throwable exception)
Constructor with a chained exception.
exception
- the exception to be chained