You can define additional slash command handlers that accept a wildcard regular expression behind to serve as a catch-all.
bdk.activities().register(slash("/Help", false, context -> {
// Regular logic
}));
bdk.activities().register(slash("/Help .*", false, context -> {
// Invalid usage logic
}));