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 localizer) : Exception(string.Format(localizer["ElementDeletedExceptionMessage"], id)) { }