presence/Demo/Data/Exceptions/PresenceNotFoundException.cs

11 lines
459 B
C#
Raw Permalink Normal View History

2024-11-08 16:52:52 +00:00
using System;
namespace Demo.Data.Exceptions
{
public class PresenceNotFoundException : RepositoryException
{
public PresenceNotFoundException(int userId, DateOnly date, int firstLesson, int lastLesson)
: base($"Посещаемость для пользователя ID: {userId} на дату {date.ToShortDateString()}" +
$" с {firstLesson} по {lastLesson} уроки не найдена.") { }
}
}