10 lines
181 B
C#
10 lines
181 B
C#
using System;
|
|
|
|
|
|
namespace data.Exception
|
|
{
|
|
public class RepositoryException : IOException
|
|
{
|
|
public RepositoryException(string message) : base(message) { }
|
|
}
|
|
} |