Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.apache.commons.net.ftp
Class FTPConnectionClosedException  view FTPConnectionClosedException download FTPConnectionClosedException.java

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.io.IOException
              extended byorg.apache.commons.net.ftp.FTPConnectionClosedException
All Implemented Interfaces:
java.io.Serializable

public class FTPConnectionClosedException
extends java.io.IOException

FTPConnectionClosedException is used to indicate the premature or unexpected closing of an FTP connection resulting from a FTPReply.SERVICE_NOT_AVAILABLE 55 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.


Nested Class Summary
 
Nested classes inherited from class java.lang.Throwable
 
Field Summary
 
Fields inherited from class java.io.IOException
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
FTPConnectionClosedException()
          Constructs a FTPConnectionClosedException with no message
FTPConnectionClosedException(java.lang.String message)
          Constructs a FTPConnectionClosedException with a specified message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FTPConnectionClosedException

public FTPConnectionClosedException()
Constructs a FTPConnectionClosedException with no message


FTPConnectionClosedException

public FTPConnectionClosedException(java.lang.String message)
Constructs a FTPConnectionClosedException with a specified message.