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