01: package net.matuschek.http;
02:
03: /*********************************************
04: Copyright (c) 2001 by Daniel Matuschek
05: *********************************************/
06:
07: /**
08: * Exception that will be thrown on HTTP errors
09: *
10: * @author Daniel Matuschek
11: * @version $Id: HttpException.java,v 1.1 2001/04/20 11:53:23 matuschd Exp $
12: */
13: public class HttpException extends Exception {
14:
15: /**
16: *
17: */
18: private static final long serialVersionUID = -7898548104576879112L;
19:
20: public HttpException(String msg) {
21: super(msg);
22: }
23: }
|