new_presence/data/Exceptions/GroupNotFoundException.cs
2024-11-16 11:29:24 +03:00

11 lines
497 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace data.Exception
{
// Конструктор исключения GroupNotFoundException.
// <param name="groupId">ID группы, которая не была найдена.
public class GroupNotFoundException : RepositoryException
{
public GroupNotFoundException(int groupId)
// Передаем сообщение об ошибке в базовый класс
: base($"Группа с ID {groupId} не найдена.") { }
}
}