admin@glassfish.java.net

CommandValidationException cleanup

From: Bill Shannon <bill.shannon_at_oracle.com>
Date: Thu, 20 May 2010 21:38:56 -0700

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!