Kotlin Data Class
data class NotInitialized(val message: String = "Auth not initialized", val cause: Throwable? = null) : AuthError
constructor(message: String = "Auth not initialized", cause: Throwable? = null)
open override val cause: Throwable? = null
open override val message: String
Was this page helpful?