Skip to content

Instantly share code, notes, and snippets.

@babjo
Created November 27, 2017 15:19
Show Gist options
  • Save babjo/c0065c22eedd8a512981bbb3ee6e4730 to your computer and use it in GitHub Desktop.
Save babjo/c0065c22eedd8a512981bbb3ee6e4730 to your computer and use it in GitHub Desktop.
CompletableFuture<String> completableFuture = new CompletableFuture<>();
// ...
completableFuture.completeExceptionally(
new RuntimeException("Calculation failed!"));
// ...
completableFuture.get(); // ExecutionException
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment