25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
575 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace JT809.Protocol.Enums
  5. {
  6. public enum JT809ErrorCode
  7. {
  8. CRC16CheckInvalid = 1001,
  9. HeaderLengthNotEqualBodyLength=1002,
  10. GetFormatterError=1003,
  11. SerializeError=1004,
  12. DeserializeError=1005,
  13. HeaderParseError=1006,
  14. BodiesParseError=1007,
  15. SubBodiesParseError = 1008,
  16. GetAttributeError=1009,
  17. ReaderRemainContentLengthError = 1010,
  18. NotGlobalRegisterFormatterAssembly=1011,
  19. IllegalArgument=1012
  20. }
  21. }