Annotation of java/classes/org/w3c/tools/resources/InvalidParentException.java, revision 1.2

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

Webmaster