01: // InvalidCacheException.java
02: // $Id: InvalidCacheException.java,v 1.2 2000/08/16 21:38:04 ylafon Exp $
03: // (c) COPYRIGHT MIT, INRIA and Keio, 1999.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.www.protocol.http.cache;
07:
08: public class InvalidCacheException extends Exception {
09:
10: public InvalidCacheException(String msg) {
11: super(msg);
12: }
13: }
|