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