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