1 2 3 4 package net.nutch.protocol.ftp; 5 6 import net.nutch.protocol.ProtocolException; 7 8 14 public class FtpException extends ProtocolException { 15 16 public FtpException() { 17 super(); 18 } 19 20 public FtpException(String message) { 21 super(message); 22 } 23 24 public FtpException(String message, Throwable cause) { 25 super(message, cause); 26 } 27 28 public FtpException(Throwable cause) { 29 super(cause); 30 } 31 32 } 33 | Popular Tags |