errors.go 701 B

1234567891011121314151617
  1. package errors
  2. import (
  3. e "errors"
  4. )
  5. var (
  6. ZoneInstanseIsEmpty = e.New("Zone: Instance name is missing.")
  7. HostServiceIsEmpty = e.New("Host: Service name is missing.")
  8. HostHostnameNotFQDM = e.New("Host: Hostname is not a fully-qualified domain name.")
  9. HostHostnameCouldNotDetermine = e.New("Host: Could not determine hostname")
  10. HostIPCouldNotDetermine = e.New("Host: Could not determine IP address(es) for hostname")
  11. HostIPAddressIsInvalid = e.New("Host: Invalid IP-address in IP-list")
  12. HostDomainNotFQDM = e.New("Host: Domain is not a fully-qualified domain name.")
  13. HostPortInvalid = e.New("Host: Port is missing or invalid.")
  14. )