-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy patherrors.go
310 lines (260 loc) · 6.87 KB
/
errors.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
// This file was auto-generated by Fern from our API Definition.
package api
import (
json "encoding/json"
core "github.com/cohere-ai/cohere-go/v2/core"
)
// This error is returned when the request is not well formed. This could be because:
// - JSON is invalid
// - The request is missing required fields
// - The request contains an invalid combination of fields
type BadRequestError struct {
*core.APIError
Body interface{}
}
func (b *BadRequestError) UnmarshalJSON(data []byte) error {
var body interface{}
if err := json.Unmarshal(data, &body); err != nil {
return err
}
b.StatusCode = 400
b.Body = body
return nil
}
func (b *BadRequestError) MarshalJSON() ([]byte, error) {
return json.Marshal(b.Body)
}
func (b *BadRequestError) Unwrap() error {
return b.APIError
}
// This error is returned when a request is cancelled by the user.
type ClientClosedRequestError struct {
*core.APIError
Body interface{}
}
func (c *ClientClosedRequestError) UnmarshalJSON(data []byte) error {
var body interface{}
if err := json.Unmarshal(data, &body); err != nil {
return err
}
c.StatusCode = 499
c.Body = body
return nil
}
func (c *ClientClosedRequestError) MarshalJSON() ([]byte, error) {
return json.Marshal(c.Body)
}
func (c *ClientClosedRequestError) Unwrap() error {
return c.APIError
}
// This error indicates that the operation attempted to be performed is not allowed. This could be because:
// - The api token is invalid
// - The user does not have the necessary permissions
type ForbiddenError struct {
*core.APIError
Body interface{}
}
func (f *ForbiddenError) UnmarshalJSON(data []byte) error {
var body interface{}
if err := json.Unmarshal(data, &body); err != nil {
return err
}
f.StatusCode = 403
f.Body = body
return nil
}
func (f *ForbiddenError) MarshalJSON() ([]byte, error) {
return json.Marshal(f.Body)
}
func (f *ForbiddenError) Unwrap() error {
return f.APIError
}
// This error is returned when a request to the server times out. This could be due to:
// - An internal services taking too long to respond
type GatewayTimeoutError struct {
*core.APIError
Body interface{}
}
func (g *GatewayTimeoutError) UnmarshalJSON(data []byte) error {
var body interface{}
if err := json.Unmarshal(data, &body); err != nil {
return err
}
g.StatusCode = 504
g.Body = body
return nil
}
func (g *GatewayTimeoutError) MarshalJSON() ([]byte, error) {
return json.Marshal(g.Body)
}
func (g *GatewayTimeoutError) Unwrap() error {
return g.APIError
}
// This error is returned when an uncategorised internal server error occurs.
type InternalServerError struct {
*core.APIError
Body interface{}
}
func (i *InternalServerError) UnmarshalJSON(data []byte) error {
var body interface{}
if err := json.Unmarshal(data, &body); err != nil {
return err
}
i.StatusCode = 500
i.Body = body
return nil
}
func (i *InternalServerError) MarshalJSON() ([]byte, error) {
return json.Marshal(i.Body)
}
func (i *InternalServerError) Unwrap() error {
return i.APIError
}
// This error is returned when a request or response contains a deny-listed token.
type InvalidTokenError struct {
*core.APIError
Body interface{}
}
func (i *InvalidTokenError) UnmarshalJSON(data []byte) error {
var body interface{}
if err := json.Unmarshal(data, &body); err != nil {
return err
}
i.StatusCode = 498
i.Body = body
return nil
}
func (i *InvalidTokenError) MarshalJSON() ([]byte, error) {
return json.Marshal(i.Body)
}
func (i *InvalidTokenError) Unwrap() error {
return i.APIError
}
// This error is returned when a resource is not found. This could be because:
// - The endpoint does not exist
// - The resource does not exist eg model id, dataset id
type NotFoundError struct {
*core.APIError
Body interface{}
}
func (n *NotFoundError) UnmarshalJSON(data []byte) error {
var body interface{}
if err := json.Unmarshal(data, &body); err != nil {
return err
}
n.StatusCode = 404
n.Body = body
return nil
}
func (n *NotFoundError) MarshalJSON() ([]byte, error) {
return json.Marshal(n.Body)
}
func (n *NotFoundError) Unwrap() error {
return n.APIError
}
// This error is returned when the requested feature is not implemented.
type NotImplementedError struct {
*core.APIError
Body interface{}
}
func (n *NotImplementedError) UnmarshalJSON(data []byte) error {
var body interface{}
if err := json.Unmarshal(data, &body); err != nil {
return err
}
n.StatusCode = 501
n.Body = body
return nil
}
func (n *NotImplementedError) MarshalJSON() ([]byte, error) {
return json.Marshal(n.Body)
}
func (n *NotImplementedError) Unwrap() error {
return n.APIError
}
// This error is returned when the service is unavailable. This could be due to:
// - Too many users trying to access the service at the same time
type ServiceUnavailableError struct {
*core.APIError
Body interface{}
}
func (s *ServiceUnavailableError) UnmarshalJSON(data []byte) error {
var body interface{}
if err := json.Unmarshal(data, &body); err != nil {
return err
}
s.StatusCode = 503
s.Body = body
return nil
}
func (s *ServiceUnavailableError) MarshalJSON() ([]byte, error) {
return json.Marshal(s.Body)
}
func (s *ServiceUnavailableError) Unwrap() error {
return s.APIError
}
// Too many requests
type TooManyRequestsError struct {
*core.APIError
Body interface{}
}
func (t *TooManyRequestsError) UnmarshalJSON(data []byte) error {
var body interface{}
if err := json.Unmarshal(data, &body); err != nil {
return err
}
t.StatusCode = 429
t.Body = body
return nil
}
func (t *TooManyRequestsError) MarshalJSON() ([]byte, error) {
return json.Marshal(t.Body)
}
func (t *TooManyRequestsError) Unwrap() error {
return t.APIError
}
// This error indicates that the operation attempted to be performed is not allowed. This could be because:
// - The api token is invalid
// - The user does not have the necessary permissions
type UnauthorizedError struct {
*core.APIError
Body interface{}
}
func (u *UnauthorizedError) UnmarshalJSON(data []byte) error {
var body interface{}
if err := json.Unmarshal(data, &body); err != nil {
return err
}
u.StatusCode = 401
u.Body = body
return nil
}
func (u *UnauthorizedError) MarshalJSON() ([]byte, error) {
return json.Marshal(u.Body)
}
func (u *UnauthorizedError) Unwrap() error {
return u.APIError
}
// This error is returned when the request is not well formed. This could be because:
// - JSON is invalid
// - The request is missing required fields
// - The request contains an invalid combination of fields
type UnprocessableEntityError struct {
*core.APIError
Body interface{}
}
func (u *UnprocessableEntityError) UnmarshalJSON(data []byte) error {
var body interface{}
if err := json.Unmarshal(data, &body); err != nil {
return err
}
u.StatusCode = 422
u.Body = body
return nil
}
func (u *UnprocessableEntityError) MarshalJSON() ([]byte, error) {
return json.Marshal(u.Body)
}
func (u *UnprocessableEntityError) Unwrap() error {
return u.APIError
}