KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > nutch > parse > ParseException


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.parse;
5
6 public class ParseException extends Exception JavaDoc {
7
8   public ParseException() {
9     super();
10   }
11
12   public ParseException(String JavaDoc message) {
13     super(message);
14   }
15
16   public ParseException(String JavaDoc message, Throwable JavaDoc cause) {
17     super(message, cause);
18   }
19
20   public ParseException(Throwable JavaDoc cause) {
21     super(cause);
22   }
23
24 }
25
Popular Tags