Skip to content

Commit

Permalink
fix: error message for get routine (#372)
Browse files Browse the repository at this point in the history
  • Loading branch information
Praful Makani committed May 20, 2020
1 parent c24bc72 commit 5966733
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -753,7 +753,7 @@ public com.google.api.services.bigquery.model.Routine call() {
EXCEPTION_HANDLER,
getOptions().getClock());
if (getOptions().getThrowNotFound() && answer == null) {
throw new BigQueryException(HTTP_NOT_FOUND, "Model not found");
throw new BigQueryException(HTTP_NOT_FOUND, "Routine not found");
}
return answer == null ? null : Routine.fromPb(this, answer);
} catch (RetryHelper.RetryHelperException e) {
Expand Down

0 comments on commit 5966733

Please sign in to comment.