ErrorCode.cs 697 B

1234567891011121314151617181920212223
  1. namespace ETModel
  2. {
  3. public static class ErrorCode
  4. {
  5. public const int ERR_Success = 0;
  6. public const int ERR_NotFoundActor = 2;
  7. public const int ERR_ActorNoMailBoxComponent = 3;
  8. public const int ERR_ActorTimeOut = 4;
  9. public const int ERR_PacketParserError = 5;
  10. public const int ERR_AccountOrPasswordError = 102;
  11. public const int ERR_SessionActorError = 103;
  12. public const int ERR_NotFoundUnit = 104;
  13. public const int ERR_ConnectGateKeyError = 105;
  14. public const int ERR_Exception = 1000;
  15. public const int ERR_RpcFail = 2001;
  16. public const int ERR_SocketDisconnected = 2002;
  17. public const int ERR_ReloadFail = 2003;
  18. public const int ERR_ActorLocationNotFound = 2004;
  19. }
  20. }