Kotlin Data Class
data class HttpError(val statusCode: Int, val message: String, val cause: Throwable? = null) : NetworkError
constructor(statusCode: Int, message: String, cause: Throwable? = null)
open override val cause: Throwable? = null
open override val message: String
val statusCode: Int
Was this page helpful?