8 lines
302 B
C#
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))
|
|
{ }
|