presence/Demo/Data/Exceptions/DataNotFoundException.cs
2024-10-18 14:46:21 +03:00

11 lines
282 B
C#

using System;
namespace Demo.Data.Exceptions
{
// Исключение для случая, когда данные не найдены
public class DataNotFoundException : Exception
{
public DataNotFoundException(string message) : base(message) { }
}
}