-
Notifications
You must be signed in to change notification settings - Fork 104
/
error_analytics.go
41 lines (35 loc) · 1.34 KB
/
error_analytics.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"
// AnalyticsErrorDesc represents a specific error returned from the analytics service.
type AnalyticsErrorDesc struct {
Code uint32
Message string
}
func translateCoreAnalyticsErrorDesc(descs []gocbcore.AnalyticsErrorDesc) []AnalyticsErrorDesc {
descsOut := make([]AnalyticsErrorDesc, len(descs))
for descIdx, desc := range descs {
descsOut[descIdx] = AnalyticsErrorDesc{
Code: desc.Code,
Message: desc.Message,
}
}
return descsOut
}
// AnalyticsError is the error type of all analytics query errors.
type AnalyticsError struct {
InnerError error `json:"-"`
Statement string `json:"statement,omitempty"`
ClientContextID string `json:"client_context_id,omitempty"`
Errors []AnalyticsErrorDesc `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 AnalyticsError) Error() string {
return e.InnerError.Error() + " | " + serializeWrappedError(e)
}
// Unwrap returns the underlying cause for this error.
func (e AnalyticsError) Unwrap() error {
return e.InnerError
}