-
Notifications
You must be signed in to change notification settings - Fork 17
/
errors.go
95 lines (78 loc) · 2.11 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
package pivnet
import (
"fmt"
"net/http"
"strings"
)
type pivnetErr struct {
Message string `json:"message"`
Errors []string `json:"errors"`
}
type pivnetInternalServerErr struct {
Error string `json:"error"`
}
type ErrPivnetOther struct {
ResponseCode int `json:"response_code" yaml:"response_code"`
Message string `json:"message" yaml:"message"`
Errors []string `json:"errors" yaml:"errors"`
}
func (e ErrPivnetOther) Error() string {
return fmt.Sprintf(
"%d - %s. Errors: %v",
e.ResponseCode,
e.Message,
strings.Join(e.Errors, ","),
)
}
type ErrUnauthorized struct {
ResponseCode int `json:"response_code" yaml:"response_code"`
Message string `json:"message" yaml:"message"`
}
func (e ErrUnauthorized) Error() string {
return e.Message
}
func newErrUnauthorized(message string) ErrUnauthorized {
return ErrUnauthorized{
ResponseCode: http.StatusUnauthorized,
Message: message,
}
}
type ErrNotFound struct {
ResponseCode int `json:"response_code" yaml:"response_code"`
Message string `json:"message" yaml:"message"`
}
func (e ErrNotFound) Error() string {
return e.Message
}
func newErrNotFound(message string) ErrNotFound {
return ErrNotFound{
ResponseCode: http.StatusNotFound,
Message: message,
}
}
type ErrUnavailableForLegalReasons struct {
ResponseCode int `json:"response_code" yaml:"response_code"`
Message string `json:"message" yaml:"message"`
}
func (e ErrUnavailableForLegalReasons) Error() string {
return e.Message
}
func newErrUnavailableForLegalReasons(message string) ErrUnavailableForLegalReasons {
return ErrUnavailableForLegalReasons{
ResponseCode: http.StatusUnavailableForLegalReasons,
Message: message,
}
}
type ErrTooManyRequests struct {
ResponseCode int `json:"response_code" yaml:"response_code"`
Message string `json:"message" yaml:"message"`
}
func (e ErrTooManyRequests) Error() string {
return e.Message
}
func newErrTooManyRequests() ErrTooManyRequests {
return ErrTooManyRequests{
ResponseCode: http.StatusTooManyRequests,
Message: "You have hit a rate limit for this request",
}
}