Package de.hybris.platform.solrserver
Class SolrServerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.hybris.platform.solrserver.SolrServerException
-
- All Implemented Interfaces:
java.io.Serializable
public class SolrServerException extends java.lang.ExceptionRepresents a Solr server related exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SolrServerException()Constructs a new exception with null as its detail message.SolrServerException(java.lang.String message)Constructs a new exception with the specified detail message.SolrServerException(java.lang.String message, java.lang.Throwable cause)Constructs a new exception with the specified detail message and cause.SolrServerException(java.lang.Throwable cause)Constructs a new exception with the specified cause.
-
-
-
Constructor Detail
-
SolrServerException
public SolrServerException()
Constructs a new exception with null as its detail message.- See Also:
Exception()
-
SolrServerException
public SolrServerException(java.lang.String message)
Constructs a new exception with the specified detail message.- Parameters:
message- - the message- See Also:
Exception(String)
-
SolrServerException
public SolrServerException(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)
-
SolrServerException
public SolrServerException(java.lang.Throwable cause)
Constructs a new exception with the specified cause.- Parameters:
cause- - the cause- See Also:
Exception(Throwable)
-
-