PresenceApp/data/Exceptions/RepositoryException.cs
2024-12-01 19:16:14 +03:00

9 lines
179 B
C#

using System;
namespace data.Exceptions
{
public class RepositoryException : Exception
{
public RepositoryException(string message) : base(message) { }
}
}