presence123/Demo/Data/Exceptions/DataAlreadyExistsException.cs

11 lines
300 B
C#
Raw Normal View History

2024-10-30 09:06:35 +00:00
using System;
namespace Demo.Data.Exceptions
{
// Исключение для случая, когда данные уже существуют
public class DataAlreadyExistsException : Exception
{
public DataAlreadyExistsException(string message) : base(message) { }
}
}