WebResourceErrorCompat
abstract class WebResourceErrorCompat
kotlin.Any | |
↳ | androidx.webkit.WebResourceErrorCompat |
Compatibility version of WebResourceError
.
Summary
Public methods | |
---|---|
abstract CharSequence |
Gets the string describing the error. |
abstract Int |
Gets the error code of the error. |
Public methods
getDescription
@NonNull abstract fun getDescription(): CharSequence
Gets the string describing the error. Descriptions are localized, and thus can be used for communicating the problem to the user.
This method should only be called if WebViewFeature#isFeatureSupported(String)
returns true for WebViewFeature#WEB_RESOURCE_ERROR_GET_DESCRIPTION
.
Return | |
---|---|
CharSequence |
The description of the error |
getErrorCode
abstract fun getErrorCode(): Int
Gets the error code of the error. The code corresponds to one of the ERROR_*
constants in WebViewClient
.
This method should only be called if WebViewFeature#isFeatureSupported(String)
returns true for WebViewFeature#WEB_RESOURCE_ERROR_GET_CODE
.
Return | |
---|---|
Int |
The error code of the error |