-
Notifications
You must be signed in to change notification settings - Fork 1
/
errors.go
152 lines (126 loc) · 2.78 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
// This file was auto-generated from our API Definition.
package polytomic
import (
json "encoding/json"
core "github.com/polytomic/polytomic-go/core"
)
// Bad Request
type BadRequestError struct {
*core.APIError
Body *ApiError
}
func (b *BadRequestError) UnmarshalJSON(data []byte) error {
var body *ApiError
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
}
// Forbidden
type ForbiddenError struct {
*core.APIError
Body *ApiError
}
func (f *ForbiddenError) UnmarshalJSON(data []byte) error {
var body *ApiError
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
}
// Internal Server Error
type InternalServerError struct {
*core.APIError
Body *ApiError
}
func (i *InternalServerError) UnmarshalJSON(data []byte) error {
var body *ApiError
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
}
// Not Found
type NotFoundError struct {
*core.APIError
Body *ApiError
}
func (n *NotFoundError) UnmarshalJSON(data []byte) error {
var body *ApiError
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
}
// Unauthorized
type UnauthorizedError struct {
*core.APIError
Body *RestErrResponse
}
func (u *UnauthorizedError) UnmarshalJSON(data []byte) error {
var body *RestErrResponse
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
}
// Unprocessable Entity
type UnprocessableEntityError struct {
*core.APIError
Body *ApiError
}
func (u *UnprocessableEntityError) UnmarshalJSON(data []byte) error {
var body *ApiError
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
}