Skip to content

Commit

Permalink
rephrase the error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Jack Zhou committed Nov 8, 2022
1 parent 3eec9db commit 160158d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/microfocus/bdd/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ private static String validateParameter(String... parameters) {
return properties.getProperty(param);
}
}
System.err.println("Parameter can not be missing. You can use either " + parameters[0] + " or " + parameters[1] + " for short.");
System.err.println("Parameter " + parameters[0] + " or " + parameters[1] + " is missing");
printArgumentMessage();
System.exit(1);
return null;
Expand Down

0 comments on commit 160158d

Please sign in to comment.