public static CompletionStage exceptionallyCompose()

in src/main/java/com/spotify/futures/CompletableFutures.java [352:356]


  public static <T> CompletionStage<T> exceptionallyCompose(
      CompletionStage<T> stage,
      Function<Throwable, ? extends CompletionStage<T>> fn) {
    return dereference(wrap(stage).exceptionally(fn));
  }