presence/Demo/Data/Exceptions/GuidNotFoundException.cs

11 lines
272 B
C#
Raw Normal View History

2024-10-18 11:46:21 +00:00
using System;
namespace Demo.Data.Exceptions
{
// Исключение для случая, когда GUID не найден
public class GuidNotFoundException : Exception
{
public GuidNotFoundException(string message) : base(message) { }
}
}