File:  [Public] / java / classes / org / w3c / jigsaw / acl / InvalidAuthException.java
Revision 1.2: download - view: text, annotated - select for diffs
Wed Aug 16 21:37:33 2000 UTC (23 years, 10 months ago) by ylafon
Branches: MAIN
CVS tags: rel-2-2, R_2_2_6_B0, R_2_2_5_B0, R_2_2_4_B0, R_2_2_3_B1, R_2_2_2_B0, R_2_2_1_B0, R_2_2_0_B0, HEAD
Fixed import statements and removed extra empty lines

// InvalidAuthException.java
// $Id: InvalidAuthException.java,v 1.2 2000/08/16 21:37:33 ylafon 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.2 $
 * @author  Benoît Mahé (bmahe@w3.org)
 */
public class InvalidAuthException extends Exception {

    public InvalidAuthException(String msg) {
	super(msg);
    }
}

Webmaster