error.go 582 B

12345678910111213141516171819
  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/status"
  6. )
  7. var (
  8. // 通用错误
  9. SystemError = status.Error(10001, "系统错误")
  10. ServiceError = status.Error(10002, "内部服务错误")
  11. ParamsError = status.Error(10003, "参数错误")
  12. DataBaseError = status.Error(10004, "数据库错误")
  13. ProvincialError = status.Error(10005, "省厅接口调用失败")
  14. NoRecordError = status.Error(10006, "查无记录")
  15. SnapError = status.Error(10007, "截图失败")
  16. )