wheat-cache/pkg/errorx/lru.go

10 lines
177 B
Go
Raw Normal View History

package errorx
func LruNotWorkFuncEventErr() error {
return New("the event haven't work of function")
}
2021-10-19 00:24:16 +08:00
func KeyBaseIsNilErr() error {
2021-11-02 21:34:23 +08:00
return New("key base can't be nil")
2021-10-19 00:24:16 +08:00
}