Class SAPHybrisCacheException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.hybris.platform.sap.core.common.exceptions.CoreBaseException
-
- de.hybris.platform.sap.core.bol.cache.exceptions.SAPHybrisCacheException
-
- All Implemented Interfaces:
MessageListHolder,java.io.Serializable
public class SAPHybrisCacheException extends CoreBaseException
TheSAPHybrisCacheExceptionis thrown if something goes wrong during cache manipulation.- 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 SAPHybrisCacheException()Standard constructor.SAPHybrisCacheException(java.lang.String msg)Standard constructor for SAPHybrisCacheException using a simple message text.SAPHybrisCacheException(java.lang.String msg, Message message)Constructor.SAPHybrisCacheException(java.lang.String msg, MessageList msgList)Constructor.SAPHybrisCacheException(java.lang.String msg, java.lang.Throwable rootCause)Standard constructor for SAPHybrisCacheException using a simple message text.
-
Method Summary
-
Methods inherited from class de.hybris.platform.sap.core.common.exceptions.CoreBaseException
addMessage, clearMessages, getMessageList
-
-
-
-
Constructor Detail
-
SAPHybrisCacheException
public SAPHybrisCacheException()
Standard constructor.
-
SAPHybrisCacheException
public SAPHybrisCacheException(java.lang.String msg)
Standard constructor for SAPHybrisCacheException using a simple message text.- Parameters:
msg- message text.
-
SAPHybrisCacheException
public SAPHybrisCacheException(java.lang.String msg, java.lang.Throwable rootCause)Standard constructor for SAPHybrisCacheException using a simple message text.- Parameters:
msg- message text.rootCause- exception which causes the exception
-
SAPHybrisCacheException
public SAPHybrisCacheException(java.lang.String msg, MessageList msgList)Constructor.- Parameters:
msg- Message for the ExceptionmsgList- List of the messages added to the exception
-
SAPHybrisCacheException
public SAPHybrisCacheException(java.lang.String msg, Message message)Constructor.- Parameters:
msg- Message for the Exceptionmessage- message added to the exception
-
-