slarny4/Demo1/Data/Exceptions/RepositoryException.cs

9 lines
193 B
C#
Raw Normal View History

2024-10-24 08:50:32 +00:00
using System;
namespace AttendanceApp.Data.Exceptions
{
public class RepositoryException : Exception
{
public RepositoryException(string message) : base(message) { }
}
}