presence/Demo/Data/Exceptions/GroupNotFoundException.cs

10 lines
252 B
C#
Raw Permalink Normal View History

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