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