Class ApplicationBaseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.hybris.platform.sap.core.common.exceptions.CoreBaseException
de.hybris.platform.sap.core.common.exceptions.ApplicationBaseException
- All Implemented Interfaces:
MessageListHolder,Serializable
- Direct Known Subclasses:
TransferItemNotValidException
Base exception to be used by the applications running on the SPA integration framework.
- See Also:
-
Field Summary
Fields inherited from class de.hybris.platform.sap.core.common.exceptions.CoreBaseException
messageListFields inherited from interface de.hybris.platform.sap.core.common.message.MessageListHolder
INVALID, VALID -
Constructor Summary
ConstructorsConstructorDescriptionApplicationBaseException(Message message) Standard constructor for ApplicationBaseException using a message object seeMessagefor details.ApplicationBaseException(Message message, Throwable rootCause) Standard constructor for ApplicationBaseException using a message object seeMessagefor details.ApplicationBaseException(String message) Standard constructor for ApplicationBaseException with the specified detail message.ApplicationBaseException(String message, Throwable rootCause) Standard constructor for ApplicationBaseException using a simple message text. -
Method Summary
Methods inherited from class de.hybris.platform.sap.core.common.exceptions.CoreBaseException
addMessage, clearMessages, getMessageListMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ApplicationBaseException
Standard constructor for ApplicationBaseException with the specified detail message.- Parameters:
message- the detail message.
-
ApplicationBaseException
Standard constructor for ApplicationBaseException using a simple message text.- Parameters:
message- message text.rootCause- exception which causes the exception
-
ApplicationBaseException
Standard constructor for ApplicationBaseException using a message object seeMessagefor details.- Parameters:
message- message which identifies the error message.
-
ApplicationBaseException
Standard constructor for ApplicationBaseException using a message object seeMessagefor details.- Parameters:
message- message object which identifies the error message.rootCause- exception which causes the exception
-