// InvalidParentException.java
// $Id: InvalidParentException.java,v 1.3 2013/10/18 13:42:26 ylafon Exp $
// (c) COPYRIGHT MIT and INRIA, 1998.
// Please first read the full copyright statement in file COPYRIGHT.html
package org.w3c.tools.resources;
/**
* @author Beno�t Mah� (bmahe@w3.org)
* @version $Revision: 1.3 $
*/
public class InvalidParentException extends RuntimeException {
private static final long serialVersionUID = -75493997966641833L;
public InvalidParentException(String msg) {
super(msg);
}
}
Webmaster