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

1.1     ! bmahe       1: // InvalidAuthException.java
        !             2: // $Id$
        !             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;
        !             7:  
        !             8: /**
        !             9:  * @version $Revision$
        !            10:  * @author  Benoît Mahé (bmahe@w3.org)
        !            11:  */
        !            12: public class InvalidAuthException extends Exception {
        !            13:     
        !            14:     public InvalidAuthException(String msg) {
        !            15:        super(msg);
        !            16:     }
        !            17: }

Webmaster