Class IntegrationBackofficeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- de.hybris.platform.integrationbackoffice.exceptions.IntegrationBackofficeException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ExportConfigurationEntityNotSelectedException,ExportConfigurationModelNotFoundException
public abstract class IntegrationBackofficeException extends java.lang.RuntimeExceptionThe base exception for integration backoffice exceptions with localized messages.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedIntegrationBackofficeException(java.lang.String message, java.lang.String... parameters)protectedIntegrationBackofficeException(java.lang.Throwable throwable, java.lang.String message, java.lang.String... parameters)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetLocalizedMessage()protected abstract java.lang.StringgetLocalizedStringKey()For each exception that extends this exception, a key must be specified to obtain a localized string from which the localized error message will be built.
-
-
-
Constructor Detail
-
IntegrationBackofficeException
protected IntegrationBackofficeException(java.lang.Throwable throwable, java.lang.String message, java.lang.String... parameters)- Parameters:
throwable- The cause of this exceptionmessage- The error message of this exceptionparameters- The error message's parameters.
-
IntegrationBackofficeException
protected IntegrationBackofficeException(java.lang.String message, java.lang.String... parameters)- Parameters:
message- The error message of this exceptionparameters- The error message's parameters.
-
-
Method Detail
-
getLocalizedMessage
public java.lang.String getLocalizedMessage()
- Overrides:
getLocalizedMessagein classjava.lang.Throwable
-
getLocalizedStringKey
protected abstract java.lang.String getLocalizedStringKey()
For each exception that extends this exception, a key must be specified to obtain a localized string from which the localized error message will be built.- Returns:
- the key of the localized string.
-
-