carbon/errors.go
2021-08-05 13:40:04 +02:00

31 lines
1.0 KiB
Go
Executable File

package carbon
import (
"fmt"
)
// 无效的时区错误
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")
}
// 无效的持续时长错误
var invalidDurationError = func(duration string) error {
return fmt.Errorf("invalid duration %q, please make sure the duration is valid", duration)
}
// 无效的时间字符串错误
var invalidValueError = func(value string) error {
return fmt.Errorf("cannot parse %q to carbon, please make sure the value is valid", value)
}
// 无效的布局模板错误
var invalidLayoutError = func(value, layout string) error {
return fmt.Errorf("cannot parse %q as layout %q to carbon, please make sure the value and layout match", value, layout)
}
// 无效的格式化字符错误
var invalidFormatError = func(value, format string) error {
return fmt.Errorf("cannot parse %q as format %q to carbon, please make sure the value and format match", value, format)
}