presence/Demo/Data/Exceptions/GroupNotFoundException.cs

10 lines
252 B
C#
Raw Normal View History

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