slarny4/Demo1/Data/Exceptions/PresenceNotFoundException.cs

9 lines
196 B
C#
Raw Normal View History

2024-11-25 04:33:26 +00:00
using System;
namespace Demo.Data.Exceptions
{
public class PresenceNotFoundException : Exception
{
public PresenceNotFoundException(string message) : base(message) { }
}
}