Class SnException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.hybris.platform.searchservices.core.SnException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
SnIndexerException,SnIndexException,SnSearchException,SnSuggestException
public class SnException extends java.lang.ExceptionRepresents a search related exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SnException()Constructs a new exception with null as its detail message.SnException(java.lang.String message)Constructs a new exception with the specified detail message.SnException(java.lang.String message, java.lang.Throwable cause)Constructs a new exception with the specified detail message and cause.SnException(java.lang.Throwable cause)Constructs a new exception with the specified cause.
-
-
-
Constructor Detail
-
SnException
public SnException()
Constructs a new exception with null as its detail message.- See Also:
Exception()
-
SnException
public SnException(java.lang.String message)
Constructs a new exception with the specified detail message.- Parameters:
message- - the message- See Also:
Exception(String)
-
SnException
public SnException(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)
-
SnException
public SnException(java.lang.Throwable cause)
Constructs a new exception with the specified cause.- Parameters:
cause- - the cause- See Also:
Exception(Throwable)
-
-