Annotation of java/classes/org/w3c/jigsaw/acl/InvalidAuthException.java, revision 1.2

1.1       bmahe       1: // InvalidAuthException.java
1.2     ! ylafon      2: // $Id: InvalidAuthException.java,v 1.1 1999/04/21 16:07:06 bmahe Exp $
1.1       bmahe       3: // (c) COPYRIGHT MIT, INRIA and Keio, 1999.
                      4: // Please first read the full copyright statement in file COPYRIGHT.html
                      5: 
                      6: package org.w3c.jigsaw.acl;
1.2     ! ylafon      7: 
1.1       bmahe       8: /**
1.2     ! ylafon      9:  * @version $Revision: 1.1 $
1.1       bmahe      10:  * @author  Benoît Mahé (bmahe@w3.org)
                     11:  */
                     12: public class InvalidAuthException extends Exception {
1.2     ! ylafon     13: 
1.1       bmahe      14:     public InvalidAuthException(String msg) {
                     15:        super(msg);
                     16:     }
                     17: }

Webmaster