errors.go 510 B

12345678910111213141516
  1. package quota // import "github.com/docker/docker/quota"
  2. import "github.com/docker/docker/errdefs"
  3. var _ errdefs.ErrNotImplemented = (*errQuotaNotSupported)(nil)
  4. // ErrQuotaNotSupported indicates if were found the FS didn't have projects quotas available
  5. var ErrQuotaNotSupported = errQuotaNotSupported{}
  6. type errQuotaNotSupported struct{}
  7. func (e errQuotaNotSupported) NotImplemented() {}
  8. func (e errQuotaNotSupported) Error() string {
  9. return "Filesystem does not support, or has not enabled quotas"
  10. }