9 lines
193 B
C#
9 lines
193 B
C#
|
using System;
|
|||
|
|
|||
|
namespace AttendanceApp.Data.Exceptions
|
|||
|
{
|
|||
|
public class RepositoryException : Exception
|
|||
|
{
|
|||
|
public RepositoryException(string message) : base(message) { }
|
|||
|
}
|
|||
|
}
|