01: // HolderInitException.java
02: // $Id: HolderInitException.java,v 1.1 1998/01/22 12:55:55 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: /**
09: * Exception throw when unable to restore an attribute holder.
10: */
11:
12: public class HolderInitException extends RuntimeException {
13:
14: public HolderInitException(String msg) {
15: super(msg);
16: }
17:
18: }
|