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