using System; namespace Demo.Data.Exceptions { public class GroupNotFoundException : RepositoryException { public GroupNotFoundException(int userId) : base($"Группа с ID {userId} не найдена.") { } } }