File:  [Public] / java / classes / org / w3c / jigsaw / acl / InvalidAuthException.java
Revision 1.3: download - view: text, annotated - select for diffs
Fri Oct 18 13:42:12 2013 UTC (10 years, 8 months ago) by ylafon
Branches: MAIN
CVS tags: HEAD
generics + raw types + serializer

// InvalidAuthException.java
// $Id: InvalidAuthException.java,v 1.3 2013/10/18 13:42:12 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;

/**
 * @author Benoît Mahé (bmahe@w3.org)
 * @version $Revision: 1.3 $
 */
public class InvalidAuthException extends Exception {

    private static final long serialVersionUID = 8690654193957562939L;

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

Webmaster