01: // InvalidAuthException.java
02: // $Id: InvalidAuthException.java,v 1.2 2000/08/16 21:37:33 ylafon Exp $
03: // (c) COPYRIGHT MIT, INRIA and Keio, 1999.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.jigsaw.acl;
07:
08: /**
09: * @version $Revision: 1.2 $
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: }
|