KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > nutch > searcher > QueryException


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 JavaDoc {
7   public QueryException(String JavaDoc message) {
8     super(message);
9   }
10 }
11
Popular Tags