Raspisanie/data/Exceptions/RepositoryException.cs

7 lines
165 B
C#
Raw Permalink Normal View History

2024-12-11 08:30:05 +00:00
namespace data.Exception
{
public class RepositoryException : IOException
{
public RepositoryException(string message) : base(message) { }
}
}