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