Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
praful committed Oct 30, 2018
1 parent 5e0bca4 commit 740bd79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ private Validator() {
static String validateDatabase(String projectId) {
checkArgument(!Strings.isNullOrEmpty(projectId), "projectId can't be empty or null");
checkArgument(PROJECT_ID_PATTERN.matcher(projectId).matches(),
"projectId must match the following pattern: " + PROJECT_ID_PATTERN.pattern());
"projectId " + projectId + " does not match the required pattern: " + PROJECT_ID_PATTERN.pattern());
return projectId;
}

Expand Down

0 comments on commit 740bd79

Please sign in to comment.