public FTPCommandException(FTPReply reply) : base(reply.Message) { this.errorCode = reply.Code; }
public LogServerReplyEventArgs(FTPReply serverReply) : base() { this.ServerReply = serverReply; }
public FTPProtocolException(FTPReply reply) : base("Invalid FTP protocol reply: " + reply.ToString()) { this.reply = reply; }