using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Bowin.Common.BarCode { /// /// 条码类异常 /// public class BarCodeException : ApplicationException { private BarCodeType barCodeType; /// /// 获取或设置条码类型 /// 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) { } } }