prezzens/Demo/Data/Exceptions/GuidNotFoundException.cs

11 lines
194 B
C#
Raw Normal View History

2024-10-19 19:38:28 +00:00
using System;
namespace Demo.Data.Exceptions
{
public class GuidNotFoundException : Exception
{
public GuidNotFoundException(string message) : base(message) { }
}
}