using System;
using System.Runtime.Serialization;namespace STACIE.ExceptionHandler
{
    public class ImportProductsException : ApplicationException
    {
        public ImportProductsException()
            : base() 
{
}        public ImportProductsException(string message)
            : base(message) 
{
}        public ImportProductsException(string message, Exception exception)
            : 
base(message, exception) 
{
}        protected ImportProductsException(SerializationInfo info, StreamingContext context)
            :
base(info, context) 
{
}
    }
}