-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherrors.go
32 lines (27 loc) · 1.15 KB
/
errors.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package mc
import (
"errors"
)
var (
ErrCacheMiss = errors.New("memcache: cache miss")
ErrNotStored = errors.New("memcache: item not stored")
ErrEmptyValue = errors.New("memcache: empty value")
ErrCASConflict = errors.New("memcache: compare-and-swap conflict")
ErrMalformedKey = errors.New("memcache: key is too long or contains invalid characters")
ErrNoServers = errors.New("memcache: no servers configured or available")
ErrNonexistentCommandName = errors.New("memcache: nonexistent command name")
ErrUnsupportedServerVersion = errors.New("memcache: unsupported server version ( < 1.6.14 )")
ErrBadIncrDec = errors.New("memcache: cannot increment or decrement non-numeric value")
ErrCorruptGetResultRead = errors.New("memcache: corrupt get result read")
errMnDone = errors.New("memcache: mn")
)
type (
ClientError struct {
Message string
}
ServerError struct {
Message string
}
)
func (c *ClientError) Error() string { return "memcache [client]: " + c.Message }
func (s *ServerError) Error() string { return "memcache [server]: " + s.Message }