1 /* Copyright (c) 2004 The Nutch Organization. All rights reserved. */ 2 /* Use subject to the conditions in http://www.nutch.org/LICENSE.txt. */ 3 4 package net.nutch.searcher; 5 6 public class QueryException extends java.io.IOException { 7 public QueryException(String message) { 8 super(message); 9 } 10 } 11