mirror of
https://github.com/foomo/neosproxy.git
synced 2025-10-16 12:35:39 +00:00
10 lines
350 B
Go
10 lines
350 B
Go
package content
|
|
|
|
import "errors"
|
|
|
|
// ErrorNotFound error in case of no cache hit
|
|
var ErrorNotFound = errors.New("cache item not found")
|
|
|
|
// ErrorInvalidationRejectedQueueExhausted error in case invalidation queue is full
|
|
var ErrorInvalidationRejectedQueueExhausted = errors.New("invalidation request rejected: invalidation queue capacity exhausted")
|