6 lines
202 B
C#
6 lines
202 B
C#
namespace SmallSoftwareContracts.Exceptions;
|
|
public class ElementDeletedException : Exception
|
|
{
|
|
public ElementDeletedException(string id) : base($"Cannot modify a deleted item(id: { id})") { }
|
|
}
|