Added in API level 23
    WebResourceError
abstract class WebResourceError
| kotlin.Any | |
| ↳ | android.webkit.WebResourceError | 
Encapsulates information about errors that occurred during loading of web resources. See WebViewClient.onReceivedError(WebView, WebResourceRequest, WebResourceError)
Summary
| Public methods | |
|---|---|
| abstract CharSequence! | Gets the string describing the error. | 
| abstract Int | Gets the error code of the error. | 
Public methods
getDescription
Added in API level 23
      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.
| Return | |
|---|---|
| CharSequence! | The description of the error | 
getErrorCode
Added in API level 23
      abstract fun getErrorCode(): Int
Gets the error code of the error. The code corresponds to one of the ERROR_* constants in WebViewClient.
| Return | |
|---|---|
| Int | The error code of the error | 
