Class SearchFailedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- in.cs699.tensors.delagram.profile_search_service.exception.SearchFailedException
-
- All Implemented Interfaces:
Serializable
public class SearchFailedException extends Exception
A custom exception to express the error that search has failed for some reason.- Author:
- swaroop_nath
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SearchFailedException()
The default constructorSearchFailedException(String message, org.springframework.http.HttpStatus status)
The parametrized constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.http.HttpStatus
getStatus()
A method to get the HTTP status which represents the type of error-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SearchFailedException
public SearchFailedException()
The default constructor
-
SearchFailedException
public SearchFailedException(String message, org.springframework.http.HttpStatus status)
The parametrized constructor- Parameters:
message
- The error messagestatus
- The HTTP Status code representing the form of issue
-
-