//============================================================================== // FTPException.java //============================================================================== package tribble.net.ftp; // System imports 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 $Revision: 1.1 $ $Date: 2007/05/08 05:13:16 $ * @since 2007-05-06 * @author David R. Tribble (david@tribble.com). *
* Copyright ©2007 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
{
// Identification
/** Revision information. */
static final String REV =
"@(#)tribble/net/ftp/FTPStoppedException.java $Revision: 1.1 $ $Date: 2007/05/08 05:13:16 $\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