// HolderInitException.java
// $Id: HolderInitException.java,v 1.2 2013/10/18 13:42:26 ylafon Exp $
// (c) COPYRIGHT MIT and INRIA, 1996.
// Please first read the full copyright statement in file COPYRIGHT.html
package org.w3c.tools.resources;
/**
* Exception throw when unable to restore an attribute holder.
*/
public class HolderInitException extends RuntimeException {
private static final long serialVersionUID = -512299450183505850L;
public HolderInitException(String msg) {
super(msg);
}
}
Webmaster