prezzens/Demo/Data/Exceptions/DataAlreadyExistsException.cs
2024-10-19 22:38:28 +03:00

11 lines
203 B
C#

using System;
namespace Demo.Data.Exceptions
{
public class DataAlreadyExistsException : Exception
{
public DataAlreadyExistsException(string message) : base(message) { }
}
}