HomeSort by relevance Sort by last modified time
    Searched refs:Throwables (Results 1 - 5 of 5) sorted by null

  /external/guava/src/com/google/common/util/concurrent/
AbstractIdleService.java 21 import com.google.common.base.Throwables;
48 throw Throwables.propagate(t);
62 throw Throwables.propagate(t);
AbstractExecutionThreadService.java 20 import com.google.common.base.Throwables;
60 throw Throwables.propagate(t);
SimpleTimeLimiter.java 21 import com.google.common.base.Throwables;
102 Throwables.throwCause(e, false);
134 throw Throwables.throwCause(e, true);
AbstractService.java 23 import com.google.common.base.Throwables;
134 throw Throwables.propagate(e.getCause());
142 throw Throwables.propagate(e.getCause());
  /external/guava/src/com/google/common/base/
Throwables.java 32 public final class Throwables {
33 private Throwables() {}
44 * Throwables.propagateIfInstanceOf(t, IOException.class);
45 * Throwables.propagateIfInstanceOf(t, SQLException.class);
46 * throw Throwables.propagate(t);
66 * Throwables.propagateIfPossible(t);
86 * Throwables.propagateIfPossible(t, OtherException.class);
137 * throw Throwables.propagate(t);
156 * Throwables.getRootCause(e).getMessage());
177 * Iterables.filter(Throwables.getCausalChain(e), IOException.class))
    [all...]

Completed in 2098 milliseconds