forked from glennliao/apijson-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrors.go
More file actions
executable file
·85 lines (70 loc) · 1.19 KB
/
errors.go
File metadata and controls
executable file
·85 lines (70 loc) · 1.19 KB
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
package consts
// action
var (
ErrNoTag = Err{
code: 400,
message: "no tag",
}
)
func NewStructureKeyNoFoundErr(k string) Err {
return NewValidStructureErr("field " + k + " is not found")
}
func NewValidStructureErr(msg string) Err {
return Err{
code: 400,
message: msg,
}
}
func NewValidReqErr(msg string) Err {
return Err{
code: 400,
message: msg,
}
}
func NewMethodNotSupportErr(msg string) Err {
return Err{
code: 400,
message: msg,
}
}
// access
func NewDenyErr(key, role string) Err {
return Err{
code: 403,
message: "deny node: " + key + " with " + role,
}
}
func NewNoAccessErr(key, role string) Err {
return Err{
code: 403,
message: "node not access: " + key + " with " + role,
}
}
func NewAccessNoFoundErr(key string) Err {
return Err{
code: 404,
message: "access no found: " + key,
}
}
func NewRequestNoFoundErr(key string) Err {
return Err{
code: 404,
message: "request no found: " + key,
}
}
func NewSysErr(msg string) Err {
return Err{
code: 500,
message: msg,
}
}
type Err struct {
code int
message string
}
func (e Err) Code() int {
return e.code
}
func (e Err) Error() string {
return e.message
}