diff --git a/src/main/java/com/google/maps/errors/ApiException.java b/src/main/java/com/google/maps/errors/ApiException.java index a9ce3be3a..493fbf361 100644 --- a/src/main/java/com/google/maps/errors/ApiException.java +++ b/src/main/java/com/google/maps/errors/ApiException.java @@ -49,7 +49,7 @@ public static ApiException from(String status, String errorMessage) { } else if ("NOT_FOUND".equals(status)) { return new NotFoundException(errorMessage); } else if ("OVER_QUERY_LIMIT".equals(status)) { - if ("You have exceeded your daily request quota for this API." + if ("You have exceeded your daily request quota for this API. If you did not set a custom daily request quota, verify your project has an active billing account." .equalsIgnoreCase(errorMessage)) { return new OverDailyLimitException(errorMessage); }