Mega_New_Presence/presence_new/Data/Exceptions/RepositoryException.cs
Class_Student 202f236834 new
2024-11-01 10:40:53 +03:00

9 lines
184 B
C#

using System;
namespace Demo.Data.Exceptions
{
public class RepositoryException : Exception
{
public RepositoryException(string message) : base(message) { }
}
}