in src/main/java/com/spotify/futures/CompletableFuturesExtra.java [125:129]
public static <T> CompletableFuture<T> exceptionallyCompletedFuture(Throwable throwable) {
final CompletableFuture<T> future = new CompletableFuture<>();
future.completeExceptionally(throwable);
return future;
}