Files
2022-04-20 15:15:09 +02:00

29 lines
653 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace SanShared.Exceptions
{
public class CSVImportException : Exception
{
public CSVImportException()
{
}
public CSVImportException(string message) : base(message)
{
}
public CSVImportException(string message, Exception innerException) : base(message, innerException)
{
}
protected CSVImportException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}