Class ApiExceptions (2.19.6)

publicclass ApiExceptions

A utility class for working with ApiException.

Inheritance

java.lang.Object > ApiExceptions

Static Methods

<ResponseT>callAndTranslateApiException(ApiFuture<ResponseT> future)

publicstaticResponseT<ResponseT>callAndTranslateApiException(ApiFuture<ResponseT>future)

Invokes ApiFuture#get() on the given future, and if the call throws an exception (which will be UncheckedExecutionException), the exception is processed in the following way:

  1. If the exception cause is a RuntimeException, the RuntimeException is rethrown. To ease debugging, the a AsyncTaskException is added as a suppressed exception to maintain the callsite.
  2. Otherwise, the UncheckedExecutionException is rethrown.
Parameter
Name Description
future com.google.api.core.ApiFuture<ResponseT>
Returns
Type Description
ResponseT

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025年11月19日 UTC.