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

1.1       bmahe       1: // InvalidParentException.java
1.3     ! ylafon      2: // $Id: InvalidParentException.java,v 1.2 2000/08/16 21:37:52 ylafon 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.3     ! ylafon      9:  * @author Beno�t Mah� (bmahe@w3.org)
        !            10:  * @version $Revision: 1.2 $
1.1       bmahe      11:  */
                     12: public class InvalidParentException extends RuntimeException {
1.2       ylafon     13: 
1.3     ! ylafon     14:     private static final long serialVersionUID = -75493997966641833L;
        !            15: 
1.1       bmahe      16:     public InvalidParentException(String msg) {
1.3     ! ylafon     17:         super(msg);
1.1       bmahe      18:     }
                     19: 
                     20: }

Webmaster