1 package net.nutch.protocol.ftp;2 3 /**4 * Exception indicating unrecognizable reply from server after5 * forced closure of data channel by client (our) side.6 *7 * @author John Xing8 */9 public class FtpExceptionUnknownForcedDataClose extends FtpException {10 FtpExceptionUnknownForcedDataClose(String msg) {11 super(msg);12 }13 }14