For those of you writing local CLI commands...
Awhile ago I changed CommandValidationException to subclass CommandException.
What I didn't do is go back and clean up all the methods that say
throws CommandException, CommandValidationException
to just say
throws CommandException
If you're touching a local CLI command, feel free to do this cleanup.
Thanks!