-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherrors.go
104 lines (86 loc) · 1.94 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
// This file was auto-generated by Fern from our API Definition.
package api
import (
json "encoding/json"
core "github.com/flagright/flagright-go/core"
)
// Bad Request
type BadRequestError struct {
*core.APIError
Body *ApiErrorResponse
}
func (b *BadRequestError) UnmarshalJSON(data []byte) error {
var body *ApiErrorResponse
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
}
// Conflict
type ConflictError struct {
*core.APIError
Body *ApiErrorResponse
}
func (c *ConflictError) UnmarshalJSON(data []byte) error {
var body *ApiErrorResponse
if err := json.Unmarshal(data, &body); err != nil {
return err
}
c.StatusCode = 409
c.Body = body
return nil
}
func (c *ConflictError) MarshalJSON() ([]byte, error) {
return json.Marshal(c.Body)
}
func (c *ConflictError) Unwrap() error {
return c.APIError
}
// Too Many Requests
type TooManyRequestsError struct {
*core.APIError
Body *ApiErrorResponse
}
func (t *TooManyRequestsError) UnmarshalJSON(data []byte) error {
var body *ApiErrorResponse
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
}
// Unauthorized
type UnauthorizedError struct {
*core.APIError
Body *ApiErrorResponse
}
func (u *UnauthorizedError) UnmarshalJSON(data []byte) error {
var body *ApiErrorResponse
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
}