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