123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Bowin.Common.BarCode
- {
- /// <summary>
- /// 条码类异常
- /// </summary>
- public class BarCodeException : ApplicationException
- {
- private BarCodeType barCodeType;
- /// <summary>
- /// 获取或设置条码类型
- /// </summary>
- public BarCodeType BarCodeType
- {
- get { return barCodeType; }
- set { barCodeType = value; }
- }
- public BarCodeException()
- : base()
- {
- }
- public BarCodeException(string message)
- : base(message)
- {
- }
- public BarCodeException(string message, Exception innerException)
- : base(message, innerException)
- {
- }
- }
- }
|