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

22 lines
387 B
C#
Raw Permalink Normal View History

2016-11-21 19:24:22 +00:00
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)
{
}
}
}