Files
Pibd-21_Semin_D.A._SmallSof…/SmallSoftwareProject/SmallSoftwareContracts/Exceptions/ElementDeletedException.cs
2025-04-24 00:06:05 +04:00

8 lines
302 B
C#

using Microsoft.Extensions.Localization;
using SmallSoftwareContracts.Resources;
namespace SmallSoftwareContracts.Exceptions;
internal class ElementDeletedException(string id, IStringLocalizer<Messages> localizer) :
Exception(string.Format(localizer["ElementDeletedExceptionMessage"], id))
{ }