presence/Demo/Data/Exceptions/DataNotFoundException.cs

10 lines
189 B
C#
Raw Permalink Normal View History

2024-11-01 07:14:01 +00:00
using System;
namespace Demo.Data.Exceptions
{
public class DataNotFoundException : Exception
{
public DataNotFoundException(string message) : base(message) { }
}
}