slarny4/Demo1/Data/Exceptions/RepositoryException.cs
2024-10-28 15:42:04 +03:00

13 lines
295 B
C#

// C:\Users\adm\Source\Repos\presence1\Demo\Data\Exceptions\RepositoryException.cs
using System;
namespace Demo.Data.Exceptions
{
public class RepositoryException : Exception
{
public RepositoryException(string message)
: base(message)
{
}
}
}