1 package net.nutch.protocol.ftp; 2 3 /** 4 * Exception indicating control channel is closed by server end, due to 5 * forced closure of data channel at client (our) end. 6 * 7 * @author John Xing 8 */ 9 public class FtpExceptionControlClosedByForcedDataClose extends FtpException { 10 FtpExceptionControlClosedByForcedDataClose(String msg) { 11 super(msg); 12 } 13 } 14