presenceNikita/Demo/Data/Exceptions/GroupNotFoundException.cs

10 lines
254 B
C#
Raw Normal View History

2024-11-10 18:56:16 +00:00
using System;
namespace Demo.Data.Exceptions
{
public class GroupNotFoundException : RepositoryException
{
public GroupNotFoundException(int groupId)
: base($"Группа с ID {groupId} не найдена.") { }
}
}