From a251cdb844a2f360087baa4cbbea5dacd008532f Mon Sep 17 00:00:00 2001 From: HuangJiaLuo <1820799930@qq.com> Date: Sat, 9 Oct 2021 22:04:47 +0800 Subject: [PATCH] feat(errorx): feat the LruNotWorkFuncEvent error --- pkg/errorx/lru.go | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 pkg/errorx/lru.go diff --git a/pkg/errorx/lru.go b/pkg/errorx/lru.go new file mode 100644 index 0000000..569e563 --- /dev/null +++ b/pkg/errorx/lru.go @@ -0,0 +1,5 @@ +package errorx + +func LruNotWorkFuncEventErr() error { + return New("the event haven't work of function") +}