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:
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.
Otherwise, the UncheckedExecutionException is rethrown.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["The latest version available is 2.63.1, but the page lists many previous versions dating back to 2.7.1, all of which are for the `com.google.api.gax.rpc.ApiExceptions` class."],["The `ApiExceptions` class is a utility designed to help with working with `ApiException`."],["This class inherits several members from `java.lang.Object`, such as `clone()`, `equals(Object)`, `hashCode()`, and `toString()`."],["The method `callAndTranslateApiException` is used to invoke `ApiFuture#get()` on a given future, handling potential `UncheckedExecutionException` by either rethrowing the `RuntimeException` cause or the `UncheckedExecutionException` itself."],["The method `callAndTranslateApiException` takes a parameter named `future`, which is a `com.google.api.core.ApiFuture` of type `ResponseT`, and returns the type `ResponseT`."]]],[]]