protected void helpFirst() throws ExitNow {
if (this.cliArgs.mode_help) {
// first see if there is an action flag included
if (this.displayModeUsage(this.cliArgs)) {
throw new ExitNow(0);
} else {
this.displayUsage();
throw new ExitNow(0);
}
}
if (this.cliArgs.mode_extraUsage) {
this.displayExtraUsage();
throw new ExitNow(0);
}
}