2024-10-28 12:42:04 +00:00
|
|
|
|
// C:\Users\adm\Source\Repos\presence1\Demo\Data\Exceptions\RepositoryException.cs
|
|
|
|
|
using System;
|
2024-10-24 08:50:32 +00:00
|
|
|
|
|
2024-10-28 12:42:04 +00:00
|
|
|
|
namespace Demo.Data.Exceptions
|
2024-10-24 08:50:32 +00:00
|
|
|
|
{
|
|
|
|
|
public class RepositoryException : Exception
|
|
|
|
|
{
|
2024-10-28 12:42:04 +00:00
|
|
|
|
public RepositoryException(string message)
|
|
|
|
|
: base(message)
|
|
|
|
|
{
|
|
|
|
|
}
|
2024-10-24 08:50:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|