Files
Check/MagicCarpetProject/MagicCarpetContracts/Exceptions/ElementDeletedException.cs
2025-04-26 11:22:30 +04:00

14 lines
416 B
C#

using MagicCarpetContracts.Resources;
using Microsoft.Extensions.Localization;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MagicCarpetContracts.Exceptions;
internal class ElementDeletedException(string id, IStringLocalizer<Messages> localizer)
: Exception(string.Format(localizer["ElementDeletedExceptionMessage"], id))
{ }