Home
last modified time | relevance | path

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

/external/guava/guava/src/com/google/common/base/
DThrowables.java61 @Nullable Throwable throwable, Class<X> declaredType) throws X { in propagateIfInstanceOf() argument
63 if (throwable != null && declaredType.isInstance(throwable)) { in propagateIfInstanceOf()
64 throw declaredType.cast(throwable); in propagateIfInstanceOf()
107 @Nullable Throwable throwable, Class<X> declaredType) throws X { in propagateIfPossible() argument
108 propagateIfInstanceOf(throwable, declaredType); in propagateIfPossible()
/external/guava/guava/src/com/google/common/io/
DCloser.java166 Class<X> declaredType) throws IOException, X { in rethrow() argument
170 Throwables.propagateIfPossible(e, declaredType); in rethrow()