presence_api/data/Exceptions/GroupNotFoundException.cs

10 lines
247 B
C#
Raw Normal View History

2024-11-11 11:35:05 +00:00
using System;
namespace data.Exceptions
{
public class GroupNotFoundException : RepositoryException
{
public GroupNotFoundException(int userId)
: base($"Группа с ID {userId} не найдена.") { }
}
}