errors.go 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // Copyright 2015 The etcd Authors
  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. "fmt"
  18. )
  19. var (
  20. ErrUnknownMethod = errors.New("etcdserver: unknown method")
  21. ErrStopped = errors.New("etcdserver: server stopped")
  22. ErrCanceled = errors.New("etcdserver: request cancelled")
  23. ErrTimeout = errors.New("etcdserver: request timed out")
  24. ErrTimeoutDueToLeaderFail = errors.New("etcdserver: request timed out, possibly due to previous leader failure")
  25. ErrTimeoutDueToConnectionLost = errors.New("etcdserver: request timed out, possibly due to connection lost")
  26. ErrNotEnoughStartedMembers = errors.New("etcdserver: re-configuration failed due to not enough started members")
  27. ErrNoLeader = errors.New("etcdserver: no leader")
  28. ErrRequestTooLarge = errors.New("etcdserver: request is too large")
  29. ErrNoSpace = errors.New("etcdserver: no space")
  30. ErrInvalidAuthToken = errors.New("etcdserver: invalid auth token")
  31. )
  32. type DiscoveryError struct {
  33. Op string
  34. Err error
  35. }
  36. func (e DiscoveryError) Error() string {
  37. return fmt.Sprintf("failed to %s discovery cluster (%v)", e.Op, e.Err)
  38. }