presence_api/data/Exceptions/GroupNotFoundException.cs

10 lines
248 B
C#
Raw Normal View History

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