You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
569 B

3 years ago
  1. package models
  2. import "errors"
  3. var ErrInvalidName = errors.New("invalid name")
  4. var ErrBadInput = errors.New("bad input")
  5. var ErrBadColor = errors.New("bad color")
  6. var ErrUnknownColorFormat = errors.New("unknown color format")
  7. var ErrMissingToken = errors.New("driver is missing authentication information")
  8. var ErrIncorrectToken = errors.New("driver is not accepting authentication information")
  9. var ErrUnexpectedResponse = errors.New("driver api returned unexpected response (wrong driver selected?)")
  10. var ErrBridgeSearchFailed = errors.New("bridge search failed")