File:  [Public] / java / classes / org / w3c / jigsaw / acl / InvalidAuthException.java
Revision 1.1: download - view: text, annotated - select for diffs
Wed Apr 21 16:07:06 1999 UTC (25 years, 2 months ago) by bmahe
Branches: MAIN
CVS tags: rel-2-1, rel-2-0, R_2_1_2_B0, R_2_1_1_B0, R_2_1_0_B4, R_2_1_0_B3, R_2_1_0_B2, R_2_1_0_B1, R_2_1_0_B0, R_2_0_5_B1, R_2_0_5_B0, R_2_0_4_B1, R_2_0_4_B0, R_2_0_3_B0, HEAD
AclFilter almost done

// InvalidAuthException.java
// $Id: InvalidAuthException.java,v 1.1 1999/04/21 16:07:06 bmahe Exp $
// (c) COPYRIGHT MIT, INRIA and Keio, 1999.
// Please first read the full copyright statement in file COPYRIGHT.html

package org.w3c.jigsaw.acl;
 
/**
 * @version $Revision: 1.1 $
 * @author  Benoît Mahé (bmahe@w3.org)
 */
public class InvalidAuthException extends Exception {
    
    public InvalidAuthException(String msg) {
	super(msg);
    }
}

Webmaster