From f81855d607652c68002ae706eac67d3a9dc1934c Mon Sep 17 00:00:00 2001 From: Gian Merlino Date: Thu, 26 Apr 2018 13:06:25 -0700 Subject: [PATCH] Add unauthorized errorCode to query docs. (#5691) --- docs/content/querying/querying.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/content/querying/querying.md b/docs/content/querying/querying.md index 3bb367f6c1a..f9d99974814 100644 --- a/docs/content/querying/querying.md +++ b/docs/content/querying/querying.md @@ -98,4 +98,5 @@ Possible codes for the *error* field include: |`Query interrupted`|The query was interrupted, possibly due to JVM shutdown.| |`Query cancelled`|The query was cancelled through the query cancellation API.| |`Resource limit exceeded`|The query exceeded a configured resource limit (e.g. groupBy maxResults).| +|`Unauthorized request.`|The query was denied due to security policy. Either the user was not recognized, or the user was recognized but does not have access to the requested resource.| |`Unknown exception`|Some other exception occurred. Check errorMessage and errorClass for details, although keep in mind that the contents of those fields are free-form and may change from release to release.|