Files
commands/core
JOO200 7583dc8810 Add support for CompletableFuture exception. (#206)
This PR adds support for exceptions in CompletableFuture in Commands.

Usage: Just return a CompletableFuture. ACF will catch the exceptionally stuff.
```java
public CompletableFuture<Void> futuredExecution(Player player) {
    return CompletableFuture.failedFuture(new InvalidCommandArgument("Failed in future.", false));
}
```
2019-03-31 13:00:24 -04:00
..