Annotation of java/classes/org/w3c/tools/resources/InvalidParentException.java, revision 1.1
1.1 ! bmahe 1: // InvalidParentException.java
! 2: // $Id$
! 3: // (c) COPYRIGHT MIT and INRIA, 1998.
! 4: // Please first read the full copyright statement in file COPYRIGHT.html
! 5:
! 6: package org.w3c.tools.resources;
! 7:
! 8: /**
! 9: * @version $Revision$
! 10: * @author Beno�t Mah� (bmahe@w3.org)
! 11: */
! 12: public class InvalidParentException extends RuntimeException {
! 13:
! 14: public InvalidParentException(String msg) {
! 15: super(msg);
! 16: }
! 17:
! 18: }
Webmaster