-
-
Notifications
You must be signed in to change notification settings - Fork 254
/
Copy patherrors.go
executable file
·95 lines (79 loc) · 2.81 KB
/
errors.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package carbon
import (
"fmt"
)
// returns a failed scan error
// 失败的扫描错误
var failedScanError = func(value any) error {
return fmt.Errorf("failed to scan value: %v", value)
}
// returns a failed parse error.
// 解析失败错误
var failedParseError = func(value string) error {
return fmt.Errorf("cannot parse %q as carbon, please make sure the value is valid", value)
}
// returns a invalid timestamp error.
// 无效的时间戳错误
var invalidTimestampError = func(value string) error {
return fmt.Errorf("invalid timestamp %s, please make sure the timestamp is valid", value)
}
// returns a nil location error.
// 无效的位置错误
var nilLocationError = func() error {
return fmt.Errorf("location cannot be nil")
}
// returns a nil language error.
// 无效的语言错误
var nilLanguageError = func() error {
return fmt.Errorf("language cannot be nil")
}
// returns a empty timezone error.
// 空的时区错误
var emptyTimezoneError = func() error {
return fmt.Errorf("timezone cannot be empty")
}
// returns an invalid timezone error.
// 无效的时区错误
var invalidTimezoneError = func(timezone string) error {
return fmt.Errorf("invalid timezone %q, please see the file %q for all valid timezones", timezone, "$GOROOT/lib/time/zoneinfo.zip")
}
// returns an empty duration error.
// 空的时长错误
var emptyDurationError = func() error {
return fmt.Errorf("duration cannot be empty")
}
// returns an invalid duration error.
// 无效的时长错误
var invalidDurationError = func(duration string) error {
return fmt.Errorf("invalid duration %q, please make sure the duration is valid", duration)
}
// returns an empty layout error.
// 空的布局模板错误
var emptyLayoutError = func() error {
return fmt.Errorf("layout cannot be empty")
}
// returns an invalid layout error.
// 无效的布局模板错误
var invalidLayoutError = func(value, layout string) error {
return fmt.Errorf("cannot parse string %q as carbon by layout %q, please make sure the value and layout match", value, layout)
}
// returns an empty format error.
// 空的格式模板错误
var emptyFormatError = func() error {
return fmt.Errorf("format cannot be empty")
}
// returns an invalid format error.
// 无效的格式模板错误
var invalidFormatError = func(value, format string) error {
return fmt.Errorf("cannot parse string %q as carbon by format %q, please make sure the value and format match", value, format)
}
// returns an empty week starts day error.
// 空的周起始日期错误
var emptyWeekStartsDayError = func() error {
return fmt.Errorf("week start day cannot be empty")
}
// returns an invalid week starts at day error.
// 无效的周起始日期错误
var invalidWeekStartsAtError = func(day string) error {
return fmt.Errorf("invalid week starts at day %s, please make sure the day is valid", day)
}