KOP-PIbd-32-Katysheva-N-E/ComponentsLibrary/EmailException.cs
2024-09-16 20:52:42 +04:00

11 lines
147 B
C#

namespace ComponentsLibrary
{
public class EmailException : Exception
{
public EmailException(string message) : base(message)
{
}
}
}