It would be good to support something like
@ExceptionHandler(NoSuchCommandException.class)
public void handleNoSuchCommandException(ExceptionContext<CommandSender> context) {
}
as well as
@ExceptionHandler(NoSuchCommandException.class)
public void handleNoSuchCommandException(NoSuchCommandExeception exception, CommandContext<CommandSender> context) {
}
etc, with the help of #536.
It would be good to support something like
as well as
etc, with the help of #536.