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