commonMain.web.WebViewError.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compose-webview-multiplatform Show documentation
Show all versions of compose-webview-multiplatform Show documentation
WebView for JetBrains Compose Multiplatform
package 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
)