All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.multiplatform.webview.web.WebViewError.kt Maven / Gradle / Ivy

There is a newer version: 1.9.40-alpha04
Show newest version
package com.multiplatform.webview.web

import androidx.compose.runtime.Immutable

/**
 * Created By Kevin Zou On 2023/9/5
 */

/**
 * A wrapper class to hold errors from the WebView.
 */
@Immutable
data class WebViewError(
    /**
     * The request the error came from.
     */
    val code: Int,
    /**
     * The error that was reported.
     */
    val description: String,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy