Home
last modified time | relevance | path

Searched refs:cause (Results 1 – 2 of 2) sorted by relevance

/webkit/integration-tests/common/src/main/java/androidx/webkit/test/common/
DWebkitUtils.java214 Throwable cause = e.getCause(); in waitForFuture()
216 if (cause instanceof Error) throw (Error) cause; in waitForFuture()
217 if (cause instanceof RuntimeException) throw (RuntimeException) cause; in waitForFuture()
220 throw new RuntimeException(cause); in waitForFuture()
/webkit/webkit/src/main/java/androidx/webkit/
DPrerenderException.java29 public PrerenderException(@NonNull String error, @Nullable Throwable cause) { in PrerenderException() argument
30 super(error, cause); in PrerenderException()