presence/data/Exceptions/RepositoryException.cs

10 lines
181 B
C#
Raw Permalink Normal View History

2024-11-11 09:07:11 +00:00
using System;
2024-11-11 10:42:08 +00:00
namespace data.Exception
2024-11-11 09:07:11 +00:00
{
2024-11-11 10:42:08 +00:00
public class RepositoryException : IOException
2024-11-11 09:07:11 +00:00
{
public RepositoryException(string message) : base(message) { }
}
}