-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherrorf.go
65 lines (50 loc) · 1017 Bytes
/
errorf.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
package whoops
import (
"fmt"
)
var _ wrapser = formattedErrorf{}
type Errorf string
func (e Errorf) Error() string {
return fmt.Sprintf("%s - not formatted correctly. Use Format(...) method", string(e))
}
func (e Errorf) Is(err error) bool {
switch w := err.(type) {
case Errorf:
return w == e
case formattedErrorf:
return w.Is(e)
}
return false
}
func (e Errorf) Format(args ...any) formattedErrorf {
return formattedErrorf{
origErr: e,
msg: fmt.Sprintf(string(e), args...),
}
}
type formattedErrorf struct {
origErr Errorf
msg string
}
func (e formattedErrorf) Is(err error) bool {
if orig, ok := err.(Errorf); ok {
return e.origErr == orig
}
errf, ok := err.(formattedErrorf)
if !ok {
return false
}
if e.origErr != errf.origErr {
return false
}
if e.msg != errf.msg {
return false
}
return true
}
func (e formattedErrorf) Error() string {
return e.msg
}
func (e formattedErrorf) WrapS(msg string, args ...any) wraps {
return WrapS(e, msg, args...)
}