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