Class HybrisSystemException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
de.hybris.platform.b2bacceleratorfacades.exception.HybrisSystemException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DomainException,PrincipalAssignedValidationException
The generic exception class for the com.hybris package.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionHybrisSystemException(String message) Creates a new instance with the given message.HybrisSystemException(String message, Throwable cause) Creates a new instance using the given message and cause exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
HybrisSystemException
Creates a new instance with the given message.- Parameters:
message- the reason for this HybrisSystemException
-
HybrisSystemException
Creates a new instance using the given message and cause exception.- Parameters:
message- The reason for this HybrisSystemException.cause- the Throwable that caused this HybrisSystemException.
-