open class SearchError : RuntimeException
Default error which is thrown when there will be any issue with search response.
SearchError()
Default constructor. SearchError(message: String!)
Constructs a new runtime exception with specified message if there will be any issue with search response. SearchError(message: String!, cause: Throwable!)
Constructs a new runtime exception with specified message and cause if there will be any issue with search response. SearchError(cause: Throwable!)
Constructs a new runtime exception with the specified cause. |