2024-11-25 04:33:26 +00:00
|
|
|
|
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-11-25 04:33:26 +00:00
|
|
|
|
public RepositoryException(string message) : base(message) { }
|
2024-10-24 08:50:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|