11 lines
166 B
C#
11 lines
166 B
C#
using System;
|
|
|
|
namespace MileageTraker.Web.DAL
|
|
{
|
|
public class ImportException : Exception
|
|
{
|
|
public ImportException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
} |