01: // NotAStoreException.java
02: // $Id: NotAStoreException.java,v 1.1 1998/01/22 13:01:40 bmahe Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1996-1997.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.tools.resources.store;
07:
08: /**
09: * This is exception gets thrown if an invalid resource store is detected.
10: */
11:
12: public class NotAStoreException extends Exception {
13:
14: public NotAStoreException(String msg) {
15: super(msg);
16: }
17:
18: }
|