FileDocCategorySizeDatePackage
FTPConnectionClosedException.javaAPI DocApache Commons NET 1.4.1 API1702Sat Dec 03 10:05:50 GMT 2005org.apache.commons.net.ftp

FTPConnectionClosedException

public class FTPConnectionClosedException extends IOException
FTPConnectionClosedException is used to indicate the premature or unexpected closing of an FTP connection resulting from a {@link org.apache.commons.net.ftp.FTPReply#SERVICE_NOT_AVAILABLE FTPReply.SERVICE_NOT_AVAILABLE } response (FTP reply code 421) to a failed FTP command. This exception is derived from IOException and therefore may be caught either as an IOException or specifically as an FTPConnectionClosedException.

author
Daniel F. Savarese
see
FTP
see
FTPClient

Fields Summary
Constructors Summary
public FTPConnectionClosedException()
Constructs a FTPConnectionClosedException with no message

        super();
    
public FTPConnectionClosedException(String message)
Constructs a FTPConnectionClosedException with a specified message.

param
message The message explaining the reason for the exception.

        super(message);
    
Methods Summary