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