aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/allegro/bigcache/entry_not_found_error.go
blob: 883bdc29eb8fbca3adc8edd2dd5bff14fdbbf136 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package bigcache

import "fmt"

// EntryNotFoundError is an error type struct which is returned when entry was not found for provided key
type EntryNotFoundError struct {
    key string
}

func notFound(key string) error {
    return &EntryNotFoundError{key}
}

// Error returned when entry does not exist.
func (e EntryNotFoundError) Error() string {
    return fmt.Sprintf("Entry %q not found", e.key)
}