/**@class android.webkit.WebResourceError @extends java.lang.Object Encapsulates information about errors occured during loading of web resources. See {@link android.webkit.WebViewClient#onReceivedError(WebView, WebResourceRequest, WebResourceError) android.webkit.WebViewClient.onReceivedError(WebView, WebResourceRequest, WebResourceError)} */ var WebResourceError = { /**Gets the error code of the error. The code corresponds to one of the ERROR_* constants in {@link android.webkit.WebViewClient}. @return {Number} The error code of the error */ getErrorCode : function( ) {}, /**Gets the string describing the error. Descriptions are localized, and thus can be used for communicating the problem to the user. @return {Object {java.lang.CharSequence}} The description of the error */ getDescription : function( ) {}, };