It would be nice to support mutually exlusive option groups for a command. I am not sure what the best syntax would be - something like this, maybe: ``` @Option(name = "-a", group = "mutex") String a; @Option(name = "-b", group = "mutex") String b; ```