01: // InvalidResourceClass.java
02: // $Id: InvalidResourceClass.java,v 1.3 1998/01/22 13:48:13 bmahe Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1997.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.jigsaw.admin;
07:
08: /**
09: * The exception for invalid classes.
10: */
11:
12: public class InvalidResourceClass extends Exception {
13:
14: public InvalidResourceClass(String msg) {
15: super(msg);
16: }
17:
18: }
|