Exceptions are not thrown by API methods.

This commit is contained in:
Yannick Lamprecht 2019-04-27 15:10:19 +01:00 committed by Phoenix616
parent 5b5450ad08
commit 8b4f7a74d3
1 changed files with 2 additions and 4 deletions

View File

@ -49,7 +49,7 @@ public interface RandomTeleportAPI {
* @param validators additional LocationValidators to customize validity check of a location
* @return a CompletableFuture<Boolean> true if teleport was successful else false
*/
CompletableFuture<Boolean> teleportToRandomLocation(Player player, Location center, int minRange, int maxRange, LocationValidator... validators) throws ExecutionException, InterruptedException;
CompletableFuture<Boolean> teleportToRandomLocation(Player player, Location center, int minRange, int maxRange, LocationValidator... validators);
/**
* Creates a RandomSearcher instance with the passed parameters
@ -60,8 +60,6 @@ public interface RandomTeleportAPI {
* @param maxRange the maximum distance a found location has to the center location
* @param validators additional LocationValidators to customize validity check of a location
* @return a randomSearcher instance
* @throws ExecutionException see {@link CompletableFuture#get()}
* @throws InterruptedException see {@link CompletableFuture#get()}
*/
RandomSearcher getRandomSearcher(Player player, Location center, int minRange, int maxRange, LocationValidator... validators) throws ExecutionException, InterruptedException;
RandomSearcher getRandomSearcher(Player player, Location center, int minRange, int maxRange, LocationValidator... validators);
}