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