Uses of Class
org.globus.ftp.exception.FTPReplyParseException

Packages that use FTPReplyParseException
org.globus.ftp.exception   
org.globus.ftp.vanilla   
 

Uses of FTPReplyParseException in org.globus.ftp.exception
 

Methods in org.globus.ftp.exception with parameters of type FTPReplyParseException
static ServerException ServerException.embedFTPReplyParseException(FTPReplyParseException rpe, String message)
          Constructs server exception with FTPReplyParseException nested in it.
static ServerException ServerException.embedFTPReplyParseException(FTPReplyParseException rpe)
           
 

Uses of FTPReplyParseException in org.globus.ftp.vanilla
 

Methods in org.globus.ftp.vanilla that throw FTPReplyParseException
 Reply FTPServerFacade.LocalControlChannel.read()
           
 Reply FTPControlChannel.read()
          Block until a reply is available in the control channel.
 Reply FTPControlChannel.exchange(Command cmd)
          Write the command to the control channel, block until reply arrives and return the reply.
 Reply FTPControlChannel.execute(Command cmd)
          Write the command to the control channel, block until reply arrives and check if the command completed successfully (reply code 200).
abstract  Reply BasicClientControlChannel.read()
           
 

Constructors in org.globus.ftp.vanilla that throw FTPReplyParseException
Reply(BufferedReader input)