namespace Fantasy; public class ErrorCode { public const uint Successful = 0; /// /// 服务器上线失败 /// public const uint OnlineSceneFailed = 1; /// /// 参数有误 /// public const uint ErrArgs = 10001; /// /// 服务器有误 /// public const uint ErrServer = 10002; /// /// 操作太频繁 /// public const uint ErrFrequent = 10003; /// /// 账号已被注册 /// public const uint ErrAccountHave = 11001; /// /// 账号或密码有误 /// public const uint ErrAccountOrPass = 11002; /// /// 登录自动注册没有设置地区 /// public const uint RegisterNotRegion = 11011; /// /// 聊天频道不存在 /// public const uint ChatNotChannel = 12011; /// /// 没回复前不能再发消息 /// public const uint MailNotReply = 12021; }