⇒ Index (Frames) |  ⇒ Index (No Frames) |  ⇒ Package |  ⇒ Package Tree |  ⇒ Full Tree 
org.apache.commons.net.ftp

Class FTPConnectionClosedException

IOException
|
+--org.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 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 Also:
FTP
FTPClient

Constructor Summary

FTPConnectionClosedException()

Constructs a FTPConnectionClosedException with no message **

FTPConnectionClosedException(String message)

Constructs a FTPConnectionClosedException with a specified message.

Constructor Details

FTPConnectionClosedException

public FTPConnectionClosedException()

Constructs a FTPConnectionClosedException with no message **


FTPConnectionClosedException

public FTPConnectionClosedException(String message)

Constructs a FTPConnectionClosedException with a specified message.

Parameters:
message - The message explaining the reason for the exception.