Class BackendRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- de.hybris.platform.sap.core.common.exceptions.CoreBaseRuntimeException
-
- de.hybris.platform.sap.core.jco.exceptions.BackendRuntimeException
-
- All Implemented Interfaces:
MessageListHolder,java.io.Serializable
- Direct Known Subclasses:
DestinationChangedRuntimeException
public class BackendRuntimeException extends CoreBaseRuntimeException
Exception for Errors caused by the developer of the isales application.
Don't catch this Exception except in the action layer because it represents an error in the implementation and not the underlying backend system.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class de.hybris.platform.sap.core.common.exceptions.CoreBaseRuntimeException
messageList
-
Fields inherited from interface de.hybris.platform.sap.core.common.message.MessageListHolder
INVALID, VALID
-
-
Constructor Summary
Constructors Constructor Description BackendRuntimeException()Creates a new exception without any message.BackendRuntimeException(java.lang.String msg)Creates a new exception with a given message.BackendRuntimeException(java.lang.String msg, java.lang.Throwable ex)Constructor.
-
Method Summary
-
Methods inherited from class de.hybris.platform.sap.core.common.exceptions.CoreBaseRuntimeException
addMessage, clearMessages, getMessageList
-
-
-
-
Constructor Detail
-
BackendRuntimeException
public BackendRuntimeException()
Creates a new exception without any message.
-
BackendRuntimeException
public BackendRuntimeException(java.lang.String msg)
Creates a new exception with a given message.- Parameters:
msg- Message to give further information about the exception
-
BackendRuntimeException
public BackendRuntimeException(java.lang.String msg, java.lang.Throwable ex)Constructor.- Parameters:
msg- Message for the Exceptionex- root cause
-
-