KOP-PIbd-32-Katysheva-N-E/ComponentsLibrary/EmailException.cs

11 lines
147 B
C#
Raw Normal View History

2024-09-16 20:52:42 +04:00
namespace ComponentsLibrary
{
public class EmailException : Exception
{
public EmailException(string message) : base(message)
{
}
}
}