using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
///
/// 错误码
///
class ErrCode
{
///
/// 交互成功
///
public const int succeed = 0;
#region ' 网络部分的错误码 '
///
/// 8001: 连接错误
///
public const int net_connectno = 8001;
///
/// 8002: 超时
///
public const int net_timeout = 8002;
///
/// 8003:解码错误
///
public const int net_decode = 8003;
///
/// 8004:其他错误
///
public const int net_other = 8004;
#endregion
}