public class CommunicationException extends BackendException
| Constructor and Description |
|---|
CommunicationException()
This method is the default Constructor.
|
CommunicationException(java.lang.String resourceBundleName,
java.lang.String messageKey,
java.lang.Object[] formatArguments,
java.lang.String defaultText)
This method constructor with a localized message.
|
CommunicationException(java.lang.String resourceBundleName,
java.lang.String messageKey,
java.lang.Object[] formatArguments,
java.lang.String defaultText,
java.lang.Throwable exception)
This method is the constructor with a localized message and a chained exception.
|
CommunicationException(java.lang.Throwable exception)
This method is the 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, setResourceBundleNamepublic CommunicationException()
This method is the default Constructor.
public CommunicationException(java.lang.String resourceBundleName,
java.lang.String messageKey,
java.lang.Object[] formatArguments,
java.lang.String defaultText)
This method 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 CommunicationException(java.lang.String resourceBundleName,
java.lang.String messageKey,
java.lang.Object[] formatArguments,
java.lang.String defaultText,
java.lang.Throwable exception)
This method is the 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 CommunicationException(java.lang.Throwable exception)
This method is the constructor with a chained exception.
exception - the exception to be chained