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

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

Webmaster