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