Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69133fc commit 34b05afCopy full SHA for 34b05af
google-cloud-clients/google-cloud-datastore/src/main/java/com/google/cloud/datastore/Validator.java
@@ -40,7 +40,7 @@ private Validator() {
40
static String validateDatabase(String projectId) {
41
checkArgument(!Strings.isNullOrEmpty(projectId), "projectId can't be empty or null");
42
checkArgument(PROJECT_ID_PATTERN.matcher(projectId).matches(),
43
- "projectId must match the following pattern: " + PROJECT_ID_PATTERN.pattern());
+ "projectId " + projectId + " does not match the required pattern: " + PROJECT_ID_PATTERN.pattern());
44
return projectId;
45
}
46
0 commit comments