in src/main/java/com/spotify/futures/CompletableToApiFutureWrapper.java [52:62]
public void accept(V v, Throwable throwable) {
if (throwable != null) {
if (throwable instanceof CancellationException) {
cancel(false);
} else {
setException(CompletableToListenableFutureWrapper.unwrapThrowable(throwable));
}
} else {
set(v);
}
}