ErrorCode.cs 558 B

1234567891011121314151617181920
  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. public const int ERR_Exception = 1000;
  12. public const int ERR_RpcFail = 2001;
  13. public const int ERR_SocketDisconnected = 2002;
  14. public const int ERR_ReloadFail = 2003;
  15. public const int ERR_ActorLocationNotFound = 2004;
  16. }
  17. }