9 lines
176 B
C#
9 lines
176 B
C#
using System;
|
|
|
|
namespace Dataceptions
|
|
{
|
|
public class RepositoryException : Exception
|
|
{
|
|
public RepositoryException(string message) : base(message) { }
|
|
}
|
|
} |