errors.go 309 Bytes
Newer Older
vicotor's avatar
vicotor committed
1 2 3 4 5
package cachedata

import "errors"

var (
6
	ErrInvalidParam     = errors.New("invalid param")
vicotor's avatar
vicotor committed
7 8 9 10
	ErrNotExist         = errors.New("not exist")
	ErrUserDeleted      = errors.New("user is deleted")
	ErrWaitLockTimeout  = errors.New("wait lock timeout")
	ErrBalanceNotEnough = errors.New("balance is not enough")
vicotor's avatar
vicotor committed
11
)