01: // UnknownResourceException.java
02: // $Id: UnknownResourceException.java,v 1.2 2000/08/16 21:37:55 ylafon 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.tools.resources.store;
07:
08: import org.w3c.tools.resources.Resource;
09:
10: public class UnknownResourceException extends RuntimeException {
11:
12: public UnknownResourceException(Resource resource) {
13: super ("ResourceStore mismatch for resource "
14: + resource.getIdentifier());
15: }
16:
17: }
|