ErrorCode.cs 582 B

123456789101112131415161718192021
  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_AccountOrPasswordError = 102;
  8. public const int ERR_SessionActorError = 103;
  9. public const int ERR_NotFoundUnit = 104;
  10. public const int ERR_ConnectGateKeyError = 105;
  11. // ´óÓÚÕâ¸ö´íÎóÅ×Òì³£
  12. public const int ERR_Exception = 1000;
  13. public const int ERR_RpcFail = 2001;
  14. public const int ERR_SocketDisconnected = 2002;
  15. public const int ERR_ReloadFail = 2003;
  16. public const int ERR_ActorLocationNotFound = 2004;
  17. }
  18. }