Class BackendCommunicationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.hybris.platform.sap.core.common.exceptions.CoreBaseException
-
- de.hybris.platform.sap.core.jco.exceptions.BackendException
-
- de.hybris.platform.sap.core.jco.exceptions.BackendCommunicationException
-
- All Implemented Interfaces:
MessageListHolder,java.io.Serializable
- Direct Known Subclasses:
BackendLogonException,BackendOfflineException,BackendServerStartupException,BackendSystemFailureException
public class BackendCommunicationException extends BackendException
Represents a general superclass for all exceptions of the backend layer caused by communication problems (network failures etc.).- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class de.hybris.platform.sap.core.common.exceptions.CoreBaseException
messageList
-
Fields inherited from interface de.hybris.platform.sap.core.common.message.MessageListHolder
INVALID, VALID
-
-
Constructor Summary
Constructors Constructor Description BackendCommunicationException(java.lang.String msg)Creates a new exception with a given message.BackendCommunicationException(java.lang.String msg, java.lang.Throwable ex)Constructor.
-
Method Summary
-
Methods inherited from class de.hybris.platform.sap.core.common.exceptions.CoreBaseException
addMessage, clearMessages, getMessageList
-
-
-
-
Constructor Detail
-
BackendCommunicationException
public BackendCommunicationException(java.lang.String msg)
Creates a new exception with a given message.- Parameters:
msg- Message to give further information about the exception
-
BackendCommunicationException
public BackendCommunicationException(java.lang.String msg, java.lang.Throwable ex)Constructor.- Parameters:
msg- Message for the Exceptionex- root cause
-
-