ErrorCode.cs 502 B

123456789101112131415161718
  1. namespace Model
  2. {
  3. public static class ErrorCode
  4. {
  5. public const int ERR_Success = 0;
  6. public const int ERR_NotFoundActor = 1;
  7. public const int ERR_RpcFail = 101;
  8. public const int ERR_AccountOrPasswordError = 102;
  9. public const int ERR_ConnectGateKeyError = 103;
  10. public const int ERR_ReloadFail = 104;
  11. public const int ERR_NotFoundUnit = 105;
  12. public const int ERR_ActorLocationNotFound = 106;
  13. public const int ERR_SessionActorError = 107;
  14. public const int ERR_ActorError = 108;
  15. }
  16. }