public abstract class BackendException extends EDPException
| Constructor and Description |
|---|
BackendException()
The default constructor of this class.
|
BackendException(java.lang.String resourceBundleName,
java.lang.String messageKey,
java.lang.Object[] formatArguments,
java.lang.String defaultText)
The constructor with a localized message of this class.
|
BackendException(java.lang.String resourceBundleName,
java.lang.String messageKey,
java.lang.Object[] formatArguments,
java.lang.String defaultText,
java.lang.Throwable exception)
The constructor with a localized message and a chained exception.
|
BackendException(java.lang.Throwable exception)
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 BackendException()
The default constructor of this class.
public BackendException(java.lang.String resourceBundleName,
java.lang.String messageKey,
java.lang.Object[] formatArguments,
java.lang.String defaultText)
The constructor with a localized message of this class.
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 BackendException(java.lang.String resourceBundleName,
java.lang.String messageKey,
java.lang.Object[] formatArguments,
java.lang.String defaultText,
java.lang.Throwable exception)
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 BackendException(java.lang.Throwable exception)
The constructor with a chained exception.
exception - The exception to be chained