Class SolrServiceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.hybris.platform.solrfacetsearch.solr.exceptions.SolrServiceException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
SolrIndexNotFoundException
,SolrIndexOperationNotFoundException
,SolrRestException
public class SolrServiceException extends java.lang.Exception
Represents a Solr service related exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SolrServiceException()
Constructs a new exception with null as its detail message.SolrServiceException(java.lang.String message)
Constructs a new exception with the specified detail message.SolrServiceException(java.lang.String message, java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.SolrServiceException(java.lang.Throwable cause)
Constructs a new exception with the specified cause.
-
-
-
Constructor Detail
-
SolrServiceException
public SolrServiceException()
Constructs a new exception with null as its detail message.- See Also:
Exception()
-
SolrServiceException
public SolrServiceException(java.lang.String message)
Constructs a new exception with the specified detail message.- Parameters:
message
- - the message- See Also:
Exception(String)
-
SolrServiceException
public SolrServiceException(java.lang.String message, java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- - the messagecause
- - the cause- See Also:
Exception(String, Throwable)
-
SolrServiceException
public SolrServiceException(java.lang.Throwable cause)
Constructs a new exception with the specified cause.- Parameters:
cause
- - the cause- See Also:
Exception(Throwable)
-
-