Presence.Desktop/data/Exceptions/GroupNotFoundException.cs

10 lines
248 B
C#
Raw Permalink Normal View History

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