slarny4/Demo1/Data/Exceptions/PresenceNotFoundException.cs

9 lines
196 B
C#

using System;
namespace Demo.Data.Exceptions
{
public class PresenceNotFoundException : Exception
{
public PresenceNotFoundException(string message) : base(message) { }
}
}