-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherror.go
31 lines (27 loc) · 899 Bytes
/
error.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
package updateApiClient
type RequestError struct {
Timestamp int64 `json:"timestamp"`
Status int `json:"status"`
Err string `json:"error"`
Exception string `json:"exception"`
Errors []struct {
Codes []string `json:"codes"`
Arguments []struct {
Codes []string `json:"codes"`
Arguments interface{} `json:"arguments"`
DefaultMessage string `json:"defaultMessage"`
Code string `json:"code"`
} `json:"arguments"`
DefaultMessage string `json:"defaultMessage"`
ObjectName string `json:"objectName"`
Field string `json:"field"`
RejectedValue string `json:"rejectedValue"`
BindingFailure bool `json:"bindingFailure"`
Code string `json:"code"`
} `json:"errors"`
Message string `json:"message"`
Path string `json:"path"`
}
func (e RequestError) Error() string {
return e.Message
}