HomeSort by relevance Sort by last modified time
    Searched refs:ExecutionException (Results 1 - 25 of 618) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
ExecutionException.java 20 * Emulation of ExecutionException.
24 public class ExecutionException extends Exception {
25 protected ExecutionException() { }
27 protected ExecutionException(String message) {
31 public ExecutionException(String message, Throwable cause) {
35 public ExecutionException(Throwable cause) {
  /libcore/ojluni/src/main/java/java/util/concurrent/
ExecutionException.java 47 public class ExecutionException extends Exception {
51 * Constructs an {@code ExecutionException} with no detail message.
55 protected ExecutionException() { }
58 * Constructs an {@code ExecutionException} with the specified detail
64 protected ExecutionException(String message) {
69 * Constructs an {@code ExecutionException} with the specified detail
76 public ExecutionException(String message, Throwable cause) {
81 * Constructs an {@code ExecutionException} with the specified cause.
89 public ExecutionException(Throwable cause) {
Future.java 72 * } catch (ExecutionException ex) { cleanup(); return; }
147 * @throws ExecutionException if the computation threw an
152 V get() throws InterruptedException, ExecutionException;
162 * @throws ExecutionException if the computation threw an
169 throws InterruptedException, ExecutionException, TimeoutException;
  /tools/appbundle/bundletool/java/com/android/tools/appbundle/bundletool/
Command.java 22 void execute() throws ExecutionException;
25 class ExecutionException extends RuntimeException {
27 public ExecutionException(String message) {
31 public ExecutionException(String message, Throwable cause) {
SplitModuleCommand.java 45 public void execute() throws ExecutionException {
50 throw new ExecutionException(
55 throw new ExecutionException("Zip error while opening the bundle " + e.getMessage(), e);
57 throw new ExecutionException("Bundle file not found", e);
59 throw new ExecutionException("I/O error while processing the bundle " + e.getMessage(), e);
  /external/testng/src/main/java/org/testng/internal/thread/
FutureResultAdapter.java 4 import java.util.concurrent.ExecutionException;
24 catch(ExecutionException ee) {
  /libcore/ojluni/src/main/java/sun/nio/ch/
CompletedFuture.java 30 import java.util.concurrent.ExecutionException;
67 public V get() throws ExecutionException {
69 throw new ExecutionException(exc);
74 public V get(long timeout, TimeUnit unit) throws ExecutionException {
78 throw new ExecutionException(exc);
  /external/volley/src/main/java/com/android/volley/toolbox/
RequestFuture.java 23 import java.util.concurrent.ExecutionException;
47 * } catch (ExecutionException e) {
86 public T get() throws InterruptedException, ExecutionException {
96 throws InterruptedException, ExecutionException, TimeoutException {
101 throws InterruptedException, ExecutionException, TimeoutException {
103 throw new ExecutionException(mException);
117 throw new ExecutionException(mException);
  /frameworks/base/packages/StatementService/src/com/android/statementservice/
ExceptionLoggingFutureTask.java 22 import java.util.concurrent.ExecutionException;
41 } catch (ExecutionException | InterruptedException e) {
  /packages/apps/Camera2/src/com/android/camera/one/v2/initialization/
DeferredManualAutoFocus.java 20 import java.util.concurrent.ExecutionException;
42 } catch (InterruptedException | ExecutionException | CancellationException e) {
DeferredPictureTaker.java 24 import java.util.concurrent.ExecutionException;
44 } catch (InterruptedException | ExecutionException | CancellationException e) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/handlers/
StaticPortConfigHandler.java 23 import org.eclipse.core.commands.ExecutionException;
28 public Object execute(ExecutionEvent event) throws ExecutionException {
  /external/guava/guava/src/com/google/common/util/concurrent/
FutureCallback.java 19 import java.util.concurrent.ExecutionException;
44 * ExecutionException}, then the cause is passed to this method. Any other
FutureFallback.java 21 import java.util.concurrent.ExecutionException;
43 * Future#get() get} method throws an {@link ExecutionException}, then the
AbstractCheckedFuture.java 22 import java.util.concurrent.ExecutionException;
46 * {@link CancellationException} or {@link ExecutionException} thrown by
73 * {@link CancellationException}, or {@link ExecutionException}
84 } catch (ExecutionException e) {
101 * {@link CancellationException}, or {@link ExecutionException}
113 } catch (ExecutionException e) {
  /external/guice/extensions/service/src/com/google/inject/service/
Service.java 19 import java.util.concurrent.ExecutionException;
38 * ExecutionException}. If it has already finished starting,
51 * State#STOPPED} or throws an {@link ExecutionException}. If it has
  /external/guava/guava-tests/test/com/google/common/cache/
AbstractLoadingCacheTest.java 24 import java.util.concurrent.ExecutionException;
39 public Object get(Object key) throws ExecutionException {
42 throw new ExecutionException(cause);
70 public Object get(Object key) throws ExecutionException {
73 throw new ExecutionException(cause);
101 public Object get(Object key) throws ExecutionException {
132 public Object get(Object key) throws ExecutionException {
135 throw new ExecutionException(cause);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractFutureTest.java 25 import java.util.concurrent.ExecutionException;
37 public void testSuccess() throws ExecutionException, InterruptedException {
54 ExecutionException ee1 = getExpectingExecutionException(future);
55 ExecutionException ee2 = getExpectingExecutionException(future);
151 private void checkStackTrace(ExecutionException e) {
164 ExecutionException e, String clazz, String method) {
180 private ExecutionException getExpectingExecutionException(
185 } catch (ExecutionException e) {
  /external/dagger2/compiler/src/it/producers-functional-tests/src/test/java/producerstest/badexecutor/
BadExecutorTest.java 7 import java.util.concurrent.ExecutionException;
45 } catch (ExecutionException e) {
55 } catch (ExecutionException e) {
65 } catch (ExecutionException e) {
  /external/dagger2/producers/src/main/java/dagger/producers/
Produced.java 20 import java.util.concurrent.ExecutionException;
36 * } catch (ExecutionException e) {
50 * @throws ExecutionException if the production threw an exception
52 public abstract T get() throws ExecutionException;
72 * {@code ExecutionException} with the given cause.
112 @Override public T get() throws ExecutionException {
113 throw new ExecutionException(throwable);
  /cts/tests/tests/uirendering/src/android/uirendering/cts/util/
MockVsyncHelper.java 24 import java.util.concurrent.ExecutionException;
46 } catch (InterruptedException | ExecutionException e) {
67 } catch (ExecutionException e) {
  /external/dagger2/producers/src/test/java/dagger/producers/
ProducedTest.java 20 import java.util.concurrent.ExecutionException;
33 @Test public void successfulProduced() throws ExecutionException {
45 } catch (ExecutionException e) {
  /external/guava/guava/src/com/google/common/cache/
AbstractLoadingCache.java 26 import java.util.concurrent.ExecutionException;
54 } catch (ExecutionException e) {
60 public ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException {
ForwardingLoadingCache.java 23 import java.util.concurrent.ExecutionException;
47 public V get(K key) throws ExecutionException {
57 public ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException {
LoadingCache.java 27 import java.util.concurrent.ExecutionException;
68 * @throws ExecutionException if a checked exception was thrown while loading the value. ({@code
69 * ExecutionException} is thrown <a
76 V get(K key) throws ExecutionException;
119 * @throws ExecutionException if a checked exception was thrown while loading the value. ({@code
120 * ExecutionException} is thrown <a
128 ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException;

Completed in 413 milliseconds

1 2 3 4 5 6 7 8 91011>>