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,Serializable
- Direct Known Subclasses:
DestinationChangedRuntimeException
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.
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:
-
Field Summary
Fields inherited from class de.hybris.platform.sap.core.common.exceptions.CoreBaseRuntimeException
messageListFields inherited from interface de.hybris.platform.sap.core.common.message.MessageListHolder
INVALID, VALID -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new exception without any message.Creates a new exception with a given message.BackendRuntimeException(String msg, Throwable ex) Constructor. -
Method Summary
Methods inherited from class de.hybris.platform.sap.core.common.exceptions.CoreBaseRuntimeException
addMessage, clearMessages, getMessageListMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
BackendRuntimeException
public BackendRuntimeException()Creates a new exception without any message. -
BackendRuntimeException
Creates a new exception with a given message.- Parameters:
msg- Message to give further information about the exception
-
BackendRuntimeException
Constructor.- Parameters:
msg- Message for the Exceptionex- root cause
-