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

11 lines
272 B
C#

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