Class SnRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- de.hybris.platform.searchservices.core.SnRuntimeException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
SnIndexConfigurationNotFoundException,SnIndexerItemSourceMappingNotFoundException,SnIndexTypeNotFoundException,SnSearchProviderConfigurationNotFoundException,SnSearchProviderMappingNotFoundException,SnSearchProviderNotFoundException
public class SnRuntimeException extends java.lang.RuntimeExceptionRepresents a search related runtime exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SnRuntimeException()Constructs a new exception with null as its detail message.SnRuntimeException(java.lang.String message)Constructs a new exception with the specified detail message.SnRuntimeException(java.lang.String message, java.lang.Throwable cause)Constructs a new exception with the specified detail message and cause.SnRuntimeException(java.lang.Throwable cause)Constructs a new exception with the specified cause.
-
-
-
Constructor Detail
-
SnRuntimeException
public SnRuntimeException()
Constructs a new exception with null as its detail message.- See Also:
RuntimeException()
-
SnRuntimeException
public SnRuntimeException(java.lang.String message)
Constructs a new exception with the specified detail message.- Parameters:
message- - the message- See Also:
RuntimeException(String)
-
SnRuntimeException
public SnRuntimeException(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:
RuntimeException(String, Throwable)
-
SnRuntimeException
public SnRuntimeException(java.lang.Throwable cause)
Constructs a new exception with the specified cause.- Parameters:
cause- - the cause- See Also:
RuntimeException(Throwable)
-
-