namespace JT808.Protocol.Enums
{
///
/// 异常错误码
///
public enum JT808ErrorCode
{
///
/// JT808校验和不相等
///
CheckCodeNotEqual = 1001,
///
/// JT19056校验和不相等
///
CarDVRCheckCodeNotEqual = 1002,
///
/// 消息头解析错误
///
HeaderParseError = 1003,
///
/// 消息体解析错误
///
BodiesParseError = 1004,
///
/// 验证长度
///
VailLength = 1005,
///
/// 没有实现对应的类型
///
NotImplType = 1006,
///
/// 长度不够
///
NotEnoughLength = 1007,
///
/// 没有全局注册格式化器
/// IJT808MessagePackFormatter
///
NotGlobalRegisterFormatterAssembly = 1008,
///
/// 经纬度错误
///
LatOrLngError = 1009
}
}