presence/data/Exceptions/GroupNotFoundException.cs

11 lines
249 B
C#
Raw Permalink Normal View History

2024-11-11 10:42:08 +00:00

using System;
2024-11-11 09:07:11 +00:00
2024-11-11 10:42:08 +00:00
namespace data.Exception
2024-11-11 09:07:11 +00:00
{
public class GroupNotFoundException : RepositoryException
{
public GroupNotFoundException(int groupId)
: base($"Группа с ID {groupId} не найдена.") { }
}
}