prezzens/Demo/Data/Exceptions/DataAlreadyExistsException.cs

11 lines
203 B
C#
Raw Permalink Normal View History

2024-10-19 19:38:28 +00:00
using System;
namespace Demo.Data.Exceptions
{
public class DataAlreadyExistsException : Exception
{
public DataAlreadyExistsException(string message) : base(message) { }
}
}