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