1 2 3 4 package net.nutch.protocol.file; 5 6 import net.nutch.protocol.ProtocolException; 7 8 public class FileException extends ProtocolException { 9 10 public FileException() { 11 super(); 12 } 13 14 public FileException(String message) { 15 super(message); 16 } 17 18 public FileException(String message, Throwable cause) { 19 super(message, cause); 20 } 21 22 public FileException(Throwable cause) { 23 super(cause); 24 } 25 26 } 27 | Popular Tags |