public String[] parse(String[] args)
throws NoSuchOptionException, MandatoryValueMissing, InvalidOptionValue {
String[] remainder = super.parse(args);
if (this.options.getSelectedCommand() == null) {
throw new UnknownCommandException("");
}
return this.options.getOptionParser().parse(remainder);
}