//============================================================================== // FTPException.java //============================================================================== package tribble.net.ftp; import java.io.IOException; import java.lang.Exception; import java.lang.String; import java.lang.Throwable; /******************************************************************************* * Interrupted FTP operation exception. * Indicates that an FTP operation was interrupted (stopped) by a call to * {@link FTPClientAdapter#stop FTPClientAdapter.stop()}. * * * @version API 2.0 $Revision: 1.2 $ $Date: 2010/07/12 21:31:48 $ * @since API 1.0, 2007-05-06 * @author David R. Tribble (david@tribble.com). *

* Copyright ©2007-2010 by David R. Tribble, all rights reserved.
* Permission is granted to any person or entity except those designated * by the United States Department of State as a terrorist, or terrorist * government or agency, to use and distribute this source code provided * that the original copyright notice remains present and unaltered. * * @see FTPClientAdapter * @see FTPClient */ public class FTPStoppedException extends FTPException { /** Revision information. */ static final String REV = "@(#)tribble/net/ftp/FTPStoppedException.java $Revision: 1.2 $ $Date: 2010/07/12 21:31:48 $\n"; // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // Constructors /*************************************************************************** * Default constructor. * * @since 1.1, 2007-05-06 */ public FTPStoppedException() { } /*************************************************************************** * Constructor. * * @param msg * Message detailing this exception. * * @since 1.1, 2007-05-06 */ public FTPStoppedException(String msg) { super(msg); } } // End FTPStoppedException.java