01: // UnloadedGenerationException.java
02: // $Id: UnloadedGenerationException.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: package org.w3c.www.protocol.http.cache;
06:
07: /**
08: * @version $Revision: 1.2 $
09: * @author Benoît Mahé (bmahe@w3.org)
10: */
11: public class UnloadedGenerationException extends RuntimeException {
12:
13: public UnloadedGenerationException(String msg) {
14: super(msg);
15: }
16:
17: }
|