Home
last modified time | relevance | path

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

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