| 123456789101112131415161718192021 |
- namespace Model
- {
- public static class ErrorCode
- {
- public const int ERR_Success = 0;
- public const int ERR_NotFoundActor = 2;
- public const int ERR_AccountOrPasswordError = 102;
- public const int ERR_SessionActorError = 103;
- public const int ERR_NotFoundUnit = 104;
- public const int ERR_ConnectGateKeyError = 105;
- // ´óÓÚÕâ¸ö´íÎóÅ×Òì³£
- public const int ERR_Exception = 1000;
- public const int ERR_RpcFail = 2001;
- public const int ERR_SocketDisconnected = 2002;
- public const int ERR_ReloadFail = 2003;
- public const int ERR_ActorLocationNotFound = 2004;
- }
- }
|