-
Notifications
You must be signed in to change notification settings - Fork 2
/
error.go
75 lines (59 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package file
import (
"fmt"
)
type IOError struct {
message string
}
func NewIOError(message string) error {
return &IOError{
message: message,
}
}
func (e IOError) Error() string {
return e.message
}
type LockError struct {
message string
}
func NewLockError(message string) error {
return &LockError{
message: message,
}
}
func (e LockError) Error() string {
return e.message
}
type TimeoutError struct {
message string
}
func NewTimeoutError(path string) error {
return &TimeoutError{
message: fmt.Sprintf("file %s: lock waiting time exceeded", path),
}
}
func (e TimeoutError) Error() string {
return e.message
}
type ContextCanceled struct {
message string
}
func NewContextCanceled(message string) error {
return &ContextCanceled{
message: message,
}
}
func (e ContextCanceled) Error() string {
return e.message
}
type ContextDone struct {
message string
}
func NewContextDone(message string) error {
return &ContextDone{
message: message,
}
}
func (e ContextDone) Error() string {
return e.message
}