01: // InvalidStore.java
02: // $Id: InvalidStoreException.java,v 1.2 2002/02/04 17:28:12 cbournez Exp $
03: // (c) COPYRIGHT MIT and INRIA, 2002.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.tools.offline.browse;
07:
08: /**
09: * The store is not valid (missing repository file...) .
10: */
11: public class InvalidStoreException extends Exception {
12:
13: public InvalidStoreException(String msg) {
14: super ("reading store failed: " + msg);
15: }
16:
17: }
|