HttpError

data class HttpError(    val code: Int,     val message: String,     val body: String) : CallError

Http request returned an error response.

Constructors

Link copied to clipboard
fun HttpError(    code: Int,     message: String,     body: String)

Properties

Link copied to clipboard
val body: String
Link copied to clipboard
val code: Int
Link copied to clipboard
val message: String