presence123/Demo/Data/Exceptions/DataNotFoundException.cs

11 lines
282 B
C#
Raw Permalink Normal View History

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