error.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // Copyright 2019 github.com. All rights reserved.
  2. // Use of this source code is governed by github.com.
  3. package errors
  4. import (
  5. "google.golang.org/grpc/codes"
  6. "google.golang.org/grpc/status"
  7. )
  8. var (
  9. // 通用错误
  10. SystemError = status.Error(10001, "系统错误")
  11. ServiceError = status.Error(10002, "内部服务错误")
  12. ParamsError = status.Error(10003, "参数错误")
  13. DataBaseError = status.Error(10004, "数据库错误")
  14. RedisError = status.Error(10005, "Redis错误")
  15. NoTokenError = status.Error(10008, "没有token")
  16. TokenExpiredError = status.Error(10009, "token已过期")
  17. TokenFailedError = status.Error(10010, "token错误")
  18. PermissionError = status.Error(10011, "权限不足")
  19. PermissionErrorNoRouter = status.Error(10012, "权限不足未设置该路由")
  20. ErrRecordNotFound = status.Error(10012, "数据不存在")
  21. )
  22. func ErrorTransForm(err error) error {
  23. if err == nil {
  24. return nil
  25. }
  26. errStatus := status.Convert(err)
  27. code := errStatus.Code()
  28. //msg := errStatus.Message()
  29. if code == codes.Unknown {
  30. return ServiceError
  31. }
  32. return err
  33. }