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) { } } }