PresenceApp/data/Exceptions/RepositoryException.cs

9 lines
179 B
C#
Raw Normal View History

2024-12-01 16:16:14 +00:00
using System;
namespace data.Exceptions
{
public class RepositoryException : Exception
{
public RepositoryException(string message) : base(message) { }
}
}