method

voidresp

Importance_0
Ruby latest stable (v1_8_7_72) - 0 notes - Class: Net::FTP
voidresp() private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/net/ftp.rb, line 250
    def voidresp
      resp = getresp
      if resp[0] != ?2
        raise FTPReplyError, resp
      end
    end
Register or log in to add new notes.