open class ResponseError : Serializable
The error which occurred while processing the request or while decoding the result. It may be a HTTP error.
ResponseError()
The error which occurred while processing the request or while decoding the result. It may be a HTTP error. |
var code: Int
An error code. |
|
var description: String!
Description of the error. |
|
static val HTTP_OK: Int
A value used to determine that the search was successful and returned zero or more results. |
open fun getCode(): Int
Returns an error code. |
|
open fun getDescription(): String!
Returns a description of the error. |
|
open fun toString(): String |