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) { }
|
|
|
|
|
}
|
|
|
|
|
}
|