Home
last modified time | relevance | path

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

/external/sdk-platform-java/java-core/google-cloud-core/src/main/java/com/google/cloud/
DExceptionHandler.java45 private final ImmutableSet<Class<? extends Exception>> retriableExceptions; field in ExceptionHandler
83 private final ImmutableSet.Builder<Class<? extends Exception>> retriableExceptions = field in ExceptionHandler.Builder
112 retriableExceptions.add(checkNotNull(exception)); in retryOn()
170 retriableExceptions = builder.retriableExceptions.build(); in ExceptionHandler()
173 Sets.intersection(retriableExceptions, nonRetriableExceptions).isEmpty(), in ExceptionHandler()
175 for (Class<? extends Exception> exception : retriableExceptions) { in ExceptionHandler()
270 return Objects.hash(interceptors, retriableExceptions, nonRetriableExceptions, retryInfo); in hashCode()
283 && Objects.equals(retriableExceptions, other.retriableExceptions) in equals()