01: // Copyright (C) 2003,2004,2005 by Object Mentor, Inc. All rights reserved.
02: // Released under the terms of the GNU General Public License version 2 or later.
03: package fitnesse.http;
04:
05: public class HttpException extends Exception {
06:
07: private static final long serialVersionUID = 1L;
08:
09: public HttpException(String message) {
10: super(message);
11: }
12:
13: }
|