| 12345678910111213141516171819202122232425 |
- using System;
- namespace Dongke.IBOSS.PRD.Client.CommonModule
- {
- /// <summary>
- /// 客户端打印异常
- /// </summary>
- public class ClientPrintException : Exception
- {
- public ClientPrintException()
- : base()
- {
- }
- public ClientPrintException(string message)
- : base(message)
- {
- }
- public ClientPrintException(string message, Exception innerException)
- : base(message, innerException)
- {
- }
- }
- }
|