Skip to content

Commit

Permalink
Better error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
metaphore committed Nov 2, 2023
1 parent 3f69c7a commit 8a548e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ private static void parseArguments(String[] args, Object argumentsObject) {
new CmdLineParser(argumentsObject, argParserProps).parseArgument(args);
} catch (CmdLineException e) {
System.err.println("Error: " + e.getLocalizedMessage() +
"\nType \"--help\" to see available options.");
"\nUse \"--help\" to see available options.");
System.exit(1);
}
}
Expand Down

0 comments on commit 8a548e5

Please sign in to comment.