01: // HttpInvalidValueException.java
02: // $Id: HttpInvalidValueException.java,v 1.2 1998/01/22 14:28:17 bmahe Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1996.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.www.http;
07:
08: public class HttpInvalidValueException extends RuntimeException {
09:
10: public HttpInvalidValueException(String msg) {
11: super(msg);
12: }
13:
14: }
|