presence/data/Exceptions/RepositoryException.cs
2024-11-11 13:42:08 +03:00

10 lines
181 B
C#

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