Created the UsageHandler

This commit is contained in:
mathias 2021-10-03 18:52:02 +02:00
parent 138ba74906
commit 4c1b270c5e
No known key found for this signature in database
GPG Key ID: 8950DF62139C852A

View File

@ -0,0 +1,17 @@
package de.gnmyt.autoresponder.commands.usage.handler;
import de.gnmyt.autoresponder.commands.usage.UsageException;
import java.util.List;
public abstract class UsageHandler {
/**
* Handles a usage exception
*
* @param exception The usage exception to handle
* @return Your replies
*/
public abstract List<String> handleUsageException(UsageException exception);
}