public class ServerErrorException extends OperationFailureErrorException
This marshallable exception is used to transform in a single common exception a large
set of internal exceptions (runtimes exception for most of them)
which can occur on server side. That the reason why
this exception manages a nested Throwable attribute which is initialized
with the original exception. But this nested exception is NEVER transmitted
to your client application. The Throwable class is the superclass of all errors and exceptions in the Java technology.
However, on server side, each time a server failure exception is
created from an internal exception, the SAP CC system always records the nested (internal) exception stack trace
into the logs or traces; this concerns also the generated ServerFailureException.
When your client application receives such an exception, it means that the initial operation request did not succeed and any change has been performed into the back-end database system. The database transaction has been rollbacked.
Use the method OperationFailureErrorException.getMessage() to retreive detail the message of the nested exception
if it exists.
ServerFailureException,
Serialized FormThe XML APIs specify the following XSD fragment:
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
TAG_NAME
The XML tag name of the XML representation: "serverError"
|
CAUSE_TAG_NAME, CAUSED_BY_TAG_NAME, MESSAGE_TAG_NAME| Constructor and Description |
|---|
ServerErrorException()
Builds an empty exception.
|
ServerErrorException(IError error)
Builds an exception with the error which has triggered it.
|
ServerErrorException(IError error,
OperationFailureErrorException exception)
Builds an exception with an error and the
OperationFailureErrorException which has triggered it. |
ServerErrorException(IError error,
java.lang.Throwable throwable)
Builds an exception with an error and the
Throwable which has triggered it. |
| Modifier and Type | Method and Description |
|---|---|
void |
addCharacterData(java.lang.String cData)
Adds character data to the content element.
|
java.lang.String |
getTagName()
Gets the XML tag name of the HCI model.
|
void |
marshalAttributes(XMLOutputter output)
Gives an XML representation of the attributes of an object.
|
void |
setAttributes(XMLAttributes atts)
Sets the attributes of the XML representation of the element being
processed.
|
addChild, getError, getMessage, marshal, marshalChildren, marshalIError, setError, unmarshalIErrorgetOperandReferencepublic static final java.lang.String TAG_NAME
public ServerErrorException()
public ServerErrorException(IError error)
error - The error which has triggered the exceptionpublic ServerErrorException(IError error, OperationFailureErrorException exception)
OperationFailureErrorException which has triggered it.error - The error of the exceptionexception - The exception which has triggered the current onepublic ServerErrorException(IError error, java.lang.Throwable throwable)
Throwable which has triggered it.error - The error of the exceptionthrowable - The throwable which has triggered the current onepublic void setAttributes(XMLAttributes atts)
XMLMarshallableatts - The XML attributes of the current elementpublic void addCharacterData(java.lang.String cData)
XMLMarshallablecData - The character data to be addedpublic java.lang.String getTagName()
OperationFailureErrorExceptiongetTagName in class OperationFailureErrorExceptionpublic void marshalAttributes(XMLOutputter output)
IXMLMarshallableoutput - The XML output to marshal the object attributes into