Add exception for missing city

This commit is contained in:
2014-05-30 20:19:11 -04:00
parent fd439b2a20
commit ea4351d6a8
3 changed files with 17 additions and 14 deletions
+11
View File
@@ -0,0 +1,11 @@
using System;
namespace MileageTraker.Web.DAL
{
public class CityNotFoundException : Exception
{
public CityNotFoundException(string message) : base(message)
{
}
}
}