Class FacetConfigServiceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.hybris.platform.solrfacetsearch.config.exceptions.FacetConfigServiceException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
AmbiguousConfigurationException
,FacetConfigUnknownBeanException
,FacetConfigUnknownItemTypeException
,FacetConfigUnknownValueRangeException
,FieldValueProviderException
,UnsuportedServerModeException
public class FacetConfigServiceException extends java.lang.Exception
Main exception of the SOLR configuration service. All exceptions thrown byFacetSearchConfigService
extend from this exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FacetConfigServiceException(java.lang.String message)
Initializes the exceptionFacetConfigServiceException(java.lang.String configName, java.lang.String message)
Initializes the exceptionFacetConfigServiceException(java.lang.String configName, java.lang.String message, java.lang.Throwable nested)
Initializes the exceptionFacetConfigServiceException(java.lang.String message, java.lang.Throwable nested)
Initializes the exception
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getConfigName()
Get configuration namejava.lang.String
getMessage()
Get error message
-
-
-
Constructor Detail
-
FacetConfigServiceException
public FacetConfigServiceException(java.lang.String configName, java.lang.String message, java.lang.Throwable nested)
Initializes the exception- Parameters:
configName
- - name of search configurationmessage
- - error messagenested
- - nested exception
-
FacetConfigServiceException
public FacetConfigServiceException(java.lang.String configName, java.lang.String message)
Initializes the exception- Parameters:
configName
- - name of search configurationmessage
- - error message
-
FacetConfigServiceException
public FacetConfigServiceException(java.lang.String message, java.lang.Throwable nested)
Initializes the exception- Parameters:
message
- - error messagenested
- - nested exception
-
FacetConfigServiceException
public FacetConfigServiceException(java.lang.String message)
Initializes the exception- Parameters:
message
- - error message
-
-