Sha256: 4f1b0c1b7e272a89b4e6e5ced43cd4da54e4f7c2a33febd83bf21ec75e4cc76e
Contents?: true
Size: 575 Bytes
Versions: 35
Compression:
Stored size: 575 Bytes
Contents
package sh.calaba.instrumentationbackend.actions.webview; import android.webkit.WebView; @SuppressWarnings("serial") public class UnableToFindChromeClientException extends RuntimeException { private final WebView webView; public UnableToFindChromeClientException(WebView webView) { this.webView = webView; } public UnableToFindChromeClientException(Exception e, WebView webView) { super(e); this.webView = webView; } public WebView getWebView() { return webView; } public String toString() { return super.toString() + "- WebView: " + webView; } }
Version data entries
35 entries across 35 versions & 1 rubygems