aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/allegro/bigcache/entry_not_found_error.go
blob: 051a71230790efb29782da7fad994fc0f940310f (plain) (blame)
1
2
3
4
5
6
package bigcache

import "errors"

// ErrEntryNotFound is an error type struct which is returned when entry was not found for provided key
var ErrEntryNotFound = errors.New("Entry not found")