1 package net.nutch.protocol.ftp;2 3 /**4 * Exception indicating bad reply of SYST command.5 *6 * @author John Xing7 */8 public class FtpExceptionBadSystResponse extends FtpException {9 FtpExceptionBadSystResponse(String msg) {10 super(msg);11 }12 }13