© 2005 BEA Systems, Inc.

com.beasys.commerce.foundation.exception
Class ApplicationException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bycom.beasys.commerce.foundation.exception.ApplicationException
All Implemented Interfaces:
MessageCatalogException, Serializable
Direct Known Subclasses:
BMPException, CatalogException, DiscountException, IllegalWorkflowTransitionException, InconsistentStateException, InvalidArgumentException, InvalidCurrencyException, ItemNotInShoppingCartException, OrderInventoryException, OrderInvoicingException, OrderShippingException, PaymentException, PaymentProcessException, PricingException, ProcessingException, ShippingMethodException, TaxException

public class ApplicationException
extends Exception
implements MessageCatalogException

The ApplicationException class is used to signal checked business logic exceptions to a caller. It is the base application exception class.

The ApplicationException class is closely tied to the MessageCatalog. An ApplicationException contains a log and user message that is constructed using the MessageCatalog. In fact, each ApplicationException derivative should have at least one user and log catalog message.

In the case of an EJB, the following guidelines should be followed:

According to the EJB 1.1 specification, an application exception is an exception defined in the throws clause of the enterprise bean home and remote interfaces, other than the RemoteException.

A bean provider is responsible for defining application exceptions in bean remote and home interfaces and is also responsible for throwing an appropriate application exception from a bean method to report a business logic exception to the client. If necessary, the bean provider should subclass the ApplicationException class to create package-specific application exceptions. However, a bean provider is responsible for using the standard EJB application exceptions (CreateException, FinderException, RemoveException, DuplicateKeyException, ObjectNotFoundException) where appropriate.

Since an application exception does not, and should not, automatically mark the existing transaction (if any) for rollback, the bean provider must do one of the following before throwing the exception, in order to insure data integrity:

The second option is only available when the bean is deployed with Container managed transaction management. Therefore, in order not to tie the bean implementation to a specific deployment, try to avoid using setRollbackOnly at all costs. If this is not possible, consider using a FatalApplicationException.

See Also:
MessageCatalog, FatalApplicationException, MessageCatalogException, Serialized Form

Field Summary
protected  Exception embeddedException
          The embedded exception.
protected  Stack logMessages
          The log messages.
protected  Stack userMessages
          The user messages.
 
Constructor Summary
ApplicationException()
          Constructs an ApplicationException with no associated message.
ApplicationException(ApplicationException topException, ApplicationException bottomException)
          Constructs an ApplicationException from two source ApplicationExceptions by concatinating the screen and log messages of the two source ApplicationExceptions.
ApplicationException(String namespace, String messageKey)
          Class constructor taking the namespace and key of the associated catalog message.
ApplicationException(String namespace, String messageKey, Exception exception)
          Class constructor taking the namespace and key of the associated catalog message and an embedded exception.
ApplicationException(String namespace, String messageKey, Object argument)
          Class constructor taking the namespace and key of the associated catalog message and a message parameter substitution argument.
ApplicationException(String namespace, String messageKey, Object[] arguments)
          Class constructor taking the namespace and key of the associated catalog message and message parameter substitution arguments.
ApplicationException(String namespace, String messageKey, Object[] arguments, Exception exception)
          Class constructor taking the namespace and key of the associated catalog message, message parameter substitution arguments, and an embedded exception.
ApplicationException(String namespace, String messageKey, Object argument, Exception exception)
          Class constructor taking the namespace and key of the associated catalog message, message parameter substitution argument, and an embedded exception.
 
Method Summary
 void addLogMessage(String namespace, String messageKey)
          Adds a new log catalog message to the stack of associated messages.
 void addLogMessage(String namespace, String messageKey, Object argument)
          Adds a new log catalog message to the stack of associated messages.
 void addLogMessage(String namespace, String messageKey, Object[] arguments)
          Adds a new log catalog message to the stack of associated messages.
 void addMessage(String namespace, String messageKey)
          Adds a new user and log catalog message to the stack of associated messages.
 void addMessage(String namespace, String messageKey, Object argument)
          Adds a new user catalog message to the stack of associated messages.
 void addMessage(String namespace, String messageKey, Object[] arguments)
          Adds a new user catalog message to the stack of associated messages.
 void addUserMessage(String namespace, String messageKey)
          Adds a new user catalog message to the stack of associated messages.
 void addUserMessage(String namespace, String messageKey, Object argument)
          Adds a new user catalog message to the stack of associated messages.
 void addUserMessage(String namespace, String messageKey, Object[] arguments)
          Adds a new user catalog message to the stack of associated messages.
 Exception getEmbeddedException()
          Gets the embedded exception associated with this exception.
 String getLocalizedMessage()
          Returns the user message associated with this exception.
 String getLogMessage()
          Returns the first log catalog message associated with this exception.
 Iterator getLogMessages()
          Returns an iterator over all the log catalog messages associated with this exception.
 String getMessage()
          Returns the user message associated with this exception.
 String getUserMessage()
          Returns the first user catalog message associated with this exception.
 Iterator getUserMessages()
          Returns an iterator over all the user catalog messages associated with this exception.
 String toString()
          Returns a string representation of this exception.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

embeddedException

protected Exception embeddedException
The embedded exception.


logMessages

protected Stack logMessages
The log messages.


userMessages

protected Stack userMessages
The user messages.

Constructor Detail

ApplicationException

public ApplicationException()
Constructs an ApplicationException with no associated message.


ApplicationException

public ApplicationException(ApplicationException topException,
                            ApplicationException bottomException)
Constructs an ApplicationException from two source ApplicationExceptions by concatinating the screen and log messages of the two source ApplicationExceptions. The messages of the first ApplicationException will preceed those of the second in the constructed ApplicationException. Furthermore, the new ApplicationException will have the embedded exception of the first ApplicationException associated with it.


ApplicationException

public ApplicationException(String namespace,
                            String messageKey)
Class constructor taking the namespace and key of the associated catalog message.


ApplicationException

public ApplicationException(String namespace,
                            String messageKey,
                            Exception exception)
Class constructor taking the namespace and key of the associated catalog message and an embedded exception.


ApplicationException

public ApplicationException(String namespace,
                            String messageKey,
                            Object argument)
Class constructor taking the namespace and key of the associated catalog message and a message parameter substitution argument.


ApplicationException

public ApplicationException(String namespace,
                            String messageKey,
                            Object[] arguments)
Class constructor taking the namespace and key of the associated catalog message and message parameter substitution arguments.


ApplicationException

public ApplicationException(String namespace,
                            String messageKey,
                            Object[] arguments,
                            Exception exception)
Class constructor taking the namespace and key of the associated catalog message, message parameter substitution arguments, and an embedded exception.


ApplicationException

public ApplicationException(String namespace,
                            String messageKey,
                            Object argument,
                            Exception exception)
Class constructor taking the namespace and key of the associated catalog message, message parameter substitution argument, and an embedded exception.

Method Detail

addLogMessage

public void addLogMessage(String namespace,
                          String messageKey)
Description copied from interface: MessageCatalogException
Adds a new log catalog message to the stack of associated messages.

Specified by:
addLogMessage in interface MessageCatalogException
Parameters:
namespace - Log catalog message namespace.
messageKey - Log catalog message key.

addLogMessage

public void addLogMessage(String namespace,
                          String messageKey,
                          Object argument)
Description copied from interface: MessageCatalogException
Adds a new log catalog message to the stack of associated messages.

Specified by:
addLogMessage in interface MessageCatalogException
Parameters:
namespace - Log catalog message namespace.
messageKey - Log catalog message key.
argument - Message parameter substitution argument.

addLogMessage

public void addLogMessage(String namespace,
                          String messageKey,
                          Object[] arguments)
Description copied from interface: MessageCatalogException
Adds a new log catalog message to the stack of associated messages.

Specified by:
addLogMessage in interface MessageCatalogException
Parameters:
namespace - Log catalog message namespace.
messageKey - Log catalog message key.

addMessage

public void addMessage(String namespace,
                       String messageKey)
Description copied from interface: MessageCatalogException
Adds a new user and log catalog message to the stack of associated messages.

Specified by:
addMessage in interface MessageCatalogException
Parameters:
namespace - User and log catalog message namespace.
messageKey - User and log catalog message key.

addMessage

public void addMessage(String namespace,
                       String messageKey,
                       Object argument)
Description copied from interface: MessageCatalogException
Adds a new user catalog message to the stack of associated messages.

Specified by:
addMessage in interface MessageCatalogException
Parameters:
namespace - User and log catalog message namespace.
messageKey - User and log catalog message key.
argument - Message parameter substitution argument.

addMessage

public void addMessage(String namespace,
                       String messageKey,
                       Object[] arguments)
Description copied from interface: MessageCatalogException
Adds a new user catalog message to the stack of associated messages.

Specified by:
addMessage in interface MessageCatalogException
Parameters:
namespace - User and log catalog message namespace.
messageKey - User and log catalog message key.

addUserMessage

public void addUserMessage(String namespace,
                           String messageKey)
Description copied from interface: MessageCatalogException
Adds a new user catalog message to the stack of associated messages.

Specified by:
addUserMessage in interface MessageCatalogException
Parameters:
namespace - User catalog message namespace.
messageKey - User catalog message key.

addUserMessage

public void addUserMessage(String namespace,
                           String messageKey,
                           Object argument)
Description copied from interface: MessageCatalogException
Adds a new user catalog message to the stack of associated messages.

Specified by:
addUserMessage in interface MessageCatalogException
Parameters:
namespace - User catalog message namespace.
messageKey - User catalog message key.
argument - Message parameter substitution argument.

addUserMessage

public void addUserMessage(String namespace,
                           String messageKey,
                           Object[] arguments)
Description copied from interface: MessageCatalogException
Adds a new user catalog message to the stack of associated messages.

Specified by:
addUserMessage in interface MessageCatalogException
Parameters:
namespace - User catalog message namespace.
messageKey - User catalog message key.

getEmbeddedException

public Exception getEmbeddedException()
Description copied from interface: MessageCatalogException
Gets the embedded exception associated with this exception.

Specified by:
getEmbeddedException in interface MessageCatalogException
Returns:
The embedded exception.

getLocalizedMessage

public String getLocalizedMessage()
Returns the user message associated with this exception.

Returns:
The user message associated with this exception.

getLogMessage

public String getLogMessage()
Description copied from interface: MessageCatalogException
Returns the first log catalog message associated with this exception.

Specified by:
getLogMessage in interface MessageCatalogException
Returns:
The first log catalog message associated with this exception.

getLogMessages

public Iterator getLogMessages()
Description copied from interface: MessageCatalogException
Returns an iterator over all the log catalog messages associated with this exception.

Specified by:
getLogMessages in interface MessageCatalogException
Returns:
An iterator over all log catalog messages.

getMessage

public String getMessage()
Returns the user message associated with this exception.

Returns:
The user message associated with this exception.

getUserMessage

public String getUserMessage()
Description copied from interface: MessageCatalogException
Returns the first user catalog message associated with this exception.

Specified by:
getUserMessage in interface MessageCatalogException
Returns:
The user catalog message associated with this exception.

getUserMessages

public Iterator getUserMessages()
Description copied from interface: MessageCatalogException
Returns an iterator over all the user catalog messages associated with this exception.

Specified by:
getUserMessages in interface MessageCatalogException
Returns:
An iterator over all user catalog messages.

toString

public String toString()
Returns a string representation of this exception.

Returns:
A string representation of this exception.

© 2005 BEA Systems, Inc.

Copyright © 2005 BEA Systems, Inc. All Rights Reserved