| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- namespace ETModel
- {
- public static class ErrorCode
- {
- public const int ERR_Success = 0;
-
- // 1-11004 是SocketError请看SocketError定义
-
- // 100000 以上,避免跟SocketError冲突
- public const int ERR_MyErrorCode = 100000;
-
- // 小于这个Rpc会抛异常
- public const int ERR_Exception = 200000;
-
- public const int ERR_NotFoundActor = 200002;
- public const int ERR_ActorNoMailBoxComponent = 200003;
- public const int ERR_ActorTimeOut = 200004;
- public const int ERR_PacketParserError = 200005;
- public const int ERR_AccountOrPasswordError = 200102;
- public const int ERR_SessionActorError = 200103;
- public const int ERR_NotFoundUnit = 200104;
- public const int ERR_ConnectGateKeyError = 200105;
- public const int ERR_RpcFail = 202001;
- public const int ERR_SocketDisconnected = 202002;
- public const int ERR_ReloadFail = 202003;
- public const int ERR_ActorLocationNotFound = 202004;
- public const int ERR_KcpCantConnect = 202005;
- public const int ERR_KcpChannelTimeout = 202006;
- public const int ERR_KcpRemoteDisconnect = 202007;
- public const int ERR_PeerDisconnect = 202008;
- public const int ERR_SocketCantSend = 202009;
- public const int ERR_SocketError = 202010;
- public const int ERR_WebsocketPeerReset = 203001;
- public const int ERR_WebsocketMessageTooBig = 203002;
- public const int ERR_WebsocketError = 203003;
- public const int ERR_WebsocketConnectError = 203004;
- public const int ERR_WebsocketSendError = 203005;
- public const int ERR_WebsocketRecvError = 203006;
- public static bool IsRpcNeedThrowException(int error)
- {
- if (error == 0)
- {
- return false;
- }
- if (error > ERR_Exception)
- {
- return false;
- }
- return true;
- }
- }
- }
|