|
© 2002 BEA Systems, Inc. | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.lang.RuntimeException
|
+--javax.ejb.EJBException
|
+--com.beasys.commerce.foundation.exception.SystemException
The SystemException class is used to signal system-level exceptions
to a caller. It is the base system exception class. A system-level exception
is a severe exception that prevents a thread of execution from proceeding in a
normal manner.
The SystemException class is closely tied to the
MessageCatalog. An SystemException
contains a log and user message that is constructed using the MessageCatalog.
In fact, each SystemException derivative should have at
least one user and log catalog message.
In the case of an EJB, the following guidelines should be followed:
If an enterprise bean method encounters a system-level exception or error that does not allow the method to successfully complete, the method should throw a suitable system exception compatible with the method's throw clause:
RuntimeException or
error, it should simply propagate the error from the bean method to the Container.
SystemException or
derivative that wraps the original exception.
SystemException
or EJBException.
A bean provider is responsible for using the standard EJB system exceptions
(EJBException and NoSuchEntityException) where
appropriate.
Since the practice of throwing a RemoteException has been deprecated
in the EJB 1.1 specification, all such occurrences must be replaced with an
instance of SystemException. In the case of a bean method that calls
another bean method, all RemoteExceptions should simply be propagated
from the bean method.
If an EJB method throws a SystemException, any existing
transaction will be rolled back by the Container and the bean's state will
be set to "does not exists".
EJBException,
MessageCatalog,
MessageCatalogException, Serialized Form| Field Summary | |
protected java.util.Stack |
logMessages
The log messages. |
protected java.util.Stack |
userMessages
The user messages. |
| Constructor Summary | |
SystemException()
Constructs an SystemException with no associated message. |
|
SystemException(java.lang.String namespace,
java.lang.String messageKey)
Class constructor taking the namespace and key of the associated catalog message. |
|
SystemException(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Exception exception)
Class constructor taking the namespace and key of the associated catalog message and an embedded exception. |
|
SystemException(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Object argument)
Class constructor taking the namespace and key of the associated catalog message and a message parameter substitution argument. |
|
SystemException(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Object[] arguments)
Class constructor taking the namespace and key of the associated catalog message and message parameter substitution arguments. |
|
SystemException(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Object[] arguments,
java.lang.Exception exception)
Class constructor taking the namespace and key of the associated catalog message, message parameter substitution arguments, and an embedded exception. |
|
SystemException(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Object argument,
java.lang.Exception exception)
Class constructor taking the namespace and key of the associated catalog message, message parameter substitution argument, and an embedded exception. |
|
SystemException(SystemException topException,
SystemException bottomException)
Constructs an SystemException from two source SystemExceptions
by concatinating the screen and log messages of the two source SystemExceptions. |
|
| Method Summary | |
void |
addLogMessage(java.lang.String namespace,
java.lang.String messageKey)
|
void |
addLogMessage(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Object argument)
|
void |
addLogMessage(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Object[] arguments)
|
void |
addMessage(java.lang.String namespace,
java.lang.String messageKey)
|
void |
addMessage(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Object argument)
|
void |
addMessage(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Object[] arguments)
|
void |
addUserMessage(java.lang.String namespace,
java.lang.String messageKey)
|
void |
addUserMessage(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Object argument)
|
void |
addUserMessage(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Object[] arguments)
|
java.lang.Exception |
getEmbeddedException()
|
java.lang.String |
getLocalizedMessage()
Returns the user message associated with this exception. |
java.lang.String |
getLogMessage()
|
java.util.Iterator |
getLogMessages()
|
java.lang.String |
getMessage()
Returns the user message associated with this exception. |
java.lang.String |
getUserMessage()
|
java.util.Iterator |
getUserMessages()
|
java.lang.String |
toString()
Returns a string representation of this exception. |
| Methods inherited from class javax.ejb.EJBException |
getCausedByException,
printStackTrace,
printStackTrace,
printStackTrace |
| Methods inherited from class java.lang.Throwable |
fillInStackTrace |
| Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
wait,
wait,
wait |
| Field Detail |
protected java.util.Stack logMessages
protected java.util.Stack userMessages
| Constructor Detail |
public SystemException()
SystemException with no associated message.
public SystemException(SystemException topException,
SystemException bottomException)
SystemException from two source SystemExceptions
by concatinating the screen and log messages of the two source SystemExceptions.
The messages of the first SystemException will preceed those of the second in the
constructed SystemException. Furthermore, the new SystemException
will have the embedded exception of the first SystemException associated with it.
SystemException - topExceptionSystemException - bottomException
public SystemException(java.lang.String namespace,
java.lang.String messageKey)
namespace - The associated catalog message namespace.messageKey - The associated catalog message key.
public SystemException(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Exception exception)
namespace - The associated catalog message namespace.messageKey - The associated catalog message key.exception - The embedded exception.
public SystemException(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Object argument)
namespace - The associated catalog message namespace.messageKey - The associated catalog message key.argument - The message parameter substitution argument.
public SystemException(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Object argument,
java.lang.Exception exception)
namespace - The associated catalog message namespace.messageKey - The associated catalog message key.argument - The message parameter substitution argument.exception - The embedded exception.
public SystemException(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Object[] arguments)
namespace - The associated catalog message namespace.messageKey - The associated catalog message key.arguments - The message parameter substitution arguments.
public SystemException(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Object[] arguments,
java.lang.Exception exception)
namespace - The associated catalog message namespace.messageKey - The associated catalog message key.arguments - The message parameter substitution arguments.exception - The embedded exception.| Method Detail |
public java.lang.Exception getEmbeddedException()
public java.lang.String getLogMessage()
public java.util.Iterator getLogMessages()
public void addLogMessage(java.lang.String namespace,
java.lang.String messageKey)
public void addLogMessage(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Object argument)
public void addLogMessage(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Object[] arguments)
public java.lang.String getUserMessage()
public java.util.Iterator getUserMessages()
public void addUserMessage(java.lang.String namespace,
java.lang.String messageKey)
public void addUserMessage(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Object argument)
public void addUserMessage(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Object[] arguments)
public void addMessage(java.lang.String namespace,
java.lang.String messageKey)
public void addMessage(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Object argument)
public void addMessage(java.lang.String namespace,
java.lang.String messageKey,
java.lang.Object[] arguments)
public java.lang.String getMessage()
public java.lang.String getLocalizedMessage()
public java.lang.String toString()
|
© 2002 BEA Systems, Inc. | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||