10 lines
247 B
C#
10 lines
247 B
C#
using System;
|
||
|
||
namespace data.Exceptions
|
||
{
|
||
public class GroupNotFoundException : RepositoryException
|
||
{
|
||
public GroupNotFoundException(int userId)
|
||
: base($"Группа с ID {userId} не найдена.") { }
|
||
}
|
||
} |