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

24 lines
718 B

  1. // ********************************************************************************
  2. // 文件名字: ErrorHandler
  3. // 文件描述: ErrorHandler
  4. // 开发人员: Michael
  5. // 创建时间: 2019/11/8 0:08
  6. //
  7. // 更新历史:
  8. // + 创建 ErrorHandler.cs 文件. by Michael @2019/11/8 0:08
  9. // ********************************************************************************
  10. using Glorysoft.SECS.EQP.Common;
  11. using Glorysoft.SECS.EQP.Utilities;
  12. using Glorysoft.SECSwell;
  13. using System;
  14. namespace Glorysoft.SECS.EQP.Handlers
  15. {
  16. public class ErrorHandler : ISECSMessageHandler
  17. {
  18. public void Execute(SECSContext context, SECSTransaction trans, SECSErrors err, string errmsg)
  19. {
  20. }
  21. }
  22. }