CSVExection.cs 796 字节
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 

namespace OnlineStore.LoadCSVLibrary
{
    public class CVSFieldNotMatchingExection : ApplicationException
    {
        public CVSFieldNotMatchingExection(string message)
            : base(message)
        {
        }
        public override string Message
        {
            get
            {
                return base.Message;
            }
        }
    }
    public class PositionAlreadyExistingExection : ApplicationException
    {
        public PositionAlreadyExistingExection(string message)
            : base(message)
        {
        }
        public override string Message
        {
            get
            {
                return base.Message;
            }
        }
    } 
}