error.go 1007 B

1234567891011121314151617181920212223242526272829
  1. package common
  2. const (
  3. Success = 200 // 返回正常
  4. InternalError = 500 // 内部错误
  5. InvalidParameters = 1001 // 参数无效
  6. InvalidRoom = 1002 // 无效的房间
  7. InvalidUser = 1003 // 无效的用户
  8. RecordNotFound = 1004 // 未查询到记录
  9. UserIsNotInRoom = 1005 // 用户不在此房间
  10. SendMessageError = 1006 // 发送消息失败
  11. SaveMessageError = 1007 // 消息保存失败
  12. UserIsNotAttention = 1008 // 用户没有互相关注
  13. UserIsBlackAtten = 1009 // 已拉黑
  14. )
  15. var ErrorMap = map[int]string{
  16. Success: "SUCCESS",
  17. InternalError: "内部错误",
  18. InvalidParameters: "无效的参数",
  19. InvalidRoom: "无效的房间",
  20. InvalidUser: "无效的用户",
  21. RecordNotFound: "未查询到记录",
  22. UserIsNotInRoom: "该用户不在此房间",
  23. SendMessageError: "消息发送失败",
  24. SaveMessageError: "消息保存失败",
  25. UserIsNotAttention: "用户没有互相关注",
  26. UserIsBlackAtten: "存在拉黑",
  27. }