errors.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. // Copyright 2015 CoreOS, Inc.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package etcdserver
  15. import (
  16. "errors"
  17. etcdErr "github.com/coreos/etcd/error"
  18. "github.com/coreos/etcd/Godeps/_workspace/src/golang.org/x/net/context"
  19. )
  20. var (
  21. ErrUnknownMethod = errors.New("etcdserver: unknown method")
  22. ErrStopped = errors.New("etcdserver: server stopped")
  23. ErrIDRemoved = errors.New("etcdserver: ID removed")
  24. ErrIDExists = errors.New("etcdserver: ID exists")
  25. ErrIDNotFound = errors.New("etcdserver: ID not found")
  26. ErrPeerURLexists = errors.New("etcdserver: peerURL exists")
  27. ErrCanceled = errors.New("etcdserver: request cancelled")
  28. ErrTimeout = errors.New("etcdserver: request timed out")
  29. )
  30. func parseCtxErr(err error) error {
  31. switch err {
  32. case context.Canceled:
  33. return ErrCanceled
  34. case context.DeadlineExceeded:
  35. return ErrTimeout
  36. default:
  37. return err
  38. }
  39. }
  40. func isKeyNotFound(err error) bool {
  41. e, ok := err.(*etcdErr.Error)
  42. return ok && e.ErrorCode == etcdErr.EcodeKeyNotFound
  43. }