Kotlin Data Class
data class RateLimited(val message: String = "Rate limited", val cause: Throwable? = null) : AuthError
constructor(message: String = "Rate limited", cause: Throwable? = null)
open override val cause: Throwable? = null
open override val message: String
Was this page helpful?