Searched refs:cause (Results 1 – 2 of 2) sorted by relevance
214 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()
29 public PrerenderException(@NonNull String error, @Nullable Throwable cause) { in PrerenderException() argument30 super(error, cause); in PrerenderException()