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