BarCodePrintEx.cs 521 B

12345678910111213141516171819202122232425
  1. using System;
  2. namespace Dongke.IBOSS.PRD.Client.CommonModule
  3. {
  4. /// <summary>
  5. /// 客户端打印异常
  6. /// </summary>
  7. public class ClientPrintException : Exception
  8. {
  9. public ClientPrintException()
  10. : base()
  11. {
  12. }
  13. public ClientPrintException(string message)
  14. : base(message)
  15. {
  16. }
  17. public ClientPrintException(string message, Exception innerException)
  18. : base(message, innerException)
  19. {
  20. }
  21. }
  22. }