dotnet-core_mail-server/MailServer/Exceptions/PortUsedException.cs

22 lines
387 B
C#

using System;
namespace SMTPServer.Exceptions
{
public class PortUsedException : Exception
{
public PortUsedException() : base()
{
}
public PortUsedException(string message) : base(message)
{
}
public PortUsedException(string message, Exception inner) : base(message, inner)
{
}
}
}