-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy patherror.go
60 lines (45 loc) · 1.03 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
52
53
54
55
56
57
58
59
60
package flags
// ErrorType represents the type of error.
type ErrorType uint
const (
// Unknown or generic error
ErrUnknown ErrorType = iota
// Expected an argument but got none
ErrExpectedArgument
// Unknown flag
ErrUnknownFlag
// Unknown group
ErrUnknownGroup
// Failed to marshal value
ErrMarshal
// The error contains the builtin help message
ErrHelp
// An argument for a boolean value was specified
ErrNoArgumentForBool
// A required flag was not specified
ErrRequired
)
// Error represents a parser error. The error returned from Parse is of this
// type. The error contains both a Type and Message.
type Error struct {
// The type of error
Type ErrorType
// The error message
Message string
}
// Get the errors error message.
func (e *Error) Error() string {
return e.Message
}
func newError(tp ErrorType, message string) *Error {
return &Error{
Type: tp,
Message: message,
}
}
func wrapError(err error) error {
if _, ok := err.(*Error); !ok {
return newError(ErrUnknown, err.Error())
}
return err
}