Files
MileageTraker/Web/DAL/CityNotFoundException.cs
T

11 lines
178 B
C#

using System;
namespace MileageTraker.Web.DAL
{
public class CityNotFoundException : Exception
{
public CityNotFoundException(string message) : base(message)
{
}
}
}