7 lines
165 B
C#
7 lines
165 B
C#
|
namespace data.Exception
|
|||
|
{
|
|||
|
public class RepositoryException : IOException
|
|||
|
{
|
|||
|
public RepositoryException(string message) : base(message) { }
|
|||
|
}
|
|||
|
}
|