KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > nutch > protocol > http > HttpException


1 /* Copyright (c) 2003 The Nutch Organization. All rights reserved. */
2 /* Use subject to the conditions in http://www.nutch.org/LICENSE.txt. */
3
4 package net.nutch.protocol.http;
5
6 import net.nutch.protocol.ProtocolException;
7
8 public class HttpException extends ProtocolException {
9
10   public HttpException() {
11     super();
12   }
13
14   public HttpException(String JavaDoc message) {
15     super(message);
16   }
17
18   public HttpException(String JavaDoc message, Throwable JavaDoc cause) {
19     super(message, cause);
20   }
21
22   public HttpException(Throwable JavaDoc cause) {
23     super(cause);
24   }
25
26 }
27
Popular Tags