using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Sleis.Models.ErrorHandling { public class SleisPasswordException : Exception { public SleisPasswordException() : base("You may not use the same password more than once.") { } } }