using System; namespace Demo.Data.Exceptions { public class PresenceNotFoundException : Exception { public PresenceNotFoundException(string message) : base(message) { } } }