-
Notifications
You must be signed in to change notification settings - Fork 1
/
error_query.go
41 lines (35 loc) · 1.25 KB
/
error_query.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package gocb
import gocbcore "github.com/couchbase/gocbcore/v8"
// QueryErrorDesc represents a specific error returned from the query service.
type QueryErrorDesc struct {
Code uint32
Message string
}
func translateCoreQueryErrorDesc(descs []gocbcore.N1QLErrorDesc) []QueryErrorDesc {
descsOut := make([]QueryErrorDesc, len(descs))
for descIdx, desc := range descs {
descsOut[descIdx] = QueryErrorDesc{
Code: desc.Code,
Message: desc.Message,
}
}
return descsOut
}
// QueryError is the error type of all query errors.
type QueryError struct {
InnerError error `json:"-"`
Statement string `json:"statement,omitempty"`
ClientContextID string `json:"client_context_id,omitempty"`
Errors []QueryErrorDesc `json:"errors,omitempty"`
Endpoint string `json:"endpoint,omitempty"`
RetryReasons []RetryReason `json:"retry_reasons,omitempty"`
RetryAttempts uint32 `json:"retry_attempts,omitempty"`
}
// Error returns the string representation of this error.
func (e QueryError) Error() string {
return e.InnerError.Error() + " | " + serializeWrappedError(e)
}
// Unwrap returns the underlying cause for this error.
func (e QueryError) Unwrap() error {
return e.InnerError
}