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

11 lines
508 B
C#
Raw 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
{
public class UserNotFoundException : RepositoryException
{
// Передача сообщения в базовый класс исключения RepositoryException.
public UserNotFoundException(Guid userGuid)
: base($"Пользователь с GUID {userGuid} не найден.") { }
}
}