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