01: // ResourceException.java
02: // $Id: ResourceException.java,v 1.1 1998/08/14 11:13:29 bmahe 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;
07:
08: public class ResourceException extends Exception {
09:
10: public ResourceException(String msg) {
11: super(msg);
12: }
13:
14: }
|