-
Notifications
You must be signed in to change notification settings - Fork 52
/
error.go
51 lines (45 loc) · 1.21 KB
/
error.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
package hood
const (
ValidationErrorValueNotSet = (1<<16 + iota)
ValidationErrorValueTooSmall
ValidationErrorValueTooBig
ValidationErrorValueTooShort
ValidationErrorValueTooLong
ValidationErrorValueNotMatch
)
// Validation error type
type ValidationError struct {
kind int
field string
}
// NewValidationError returns a new validation error with the specified id and
// text. The id's purpose is to distinguish different validation error types.
// Built-in validation error ids start at 65536, so you should keep your custom
// ids under that value.
func NewValidationError(id int, field string) error {
return &ValidationError{id, field}
}
func (e *ValidationError) Error() string {
kindStr := ""
switch e.kind {
case ValidationErrorValueNotSet:
kindStr = " not set"
case ValidationErrorValueTooBig:
kindStr = " too big"
case ValidationErrorValueTooLong:
kindStr = " too long"
case ValidationErrorValueTooSmall:
kindStr = " too small"
case ValidationErrorValueTooShort:
kindStr = " too short"
case ValidationErrorValueNotMatch:
kindStr = " not match"
}
return e.field + kindStr
}
func (e *ValidationError) Kind() int {
return e.kind
}
func (e *ValidationError) Field() string {
return e.field
}