Annotation of java/classes/org/w3c/util/InvalidDateException.java, revision 1.2
1.1 bmahe 1: // InvalidDateException.java
1.2 ! ylafon 2: // $Id: InvalidDateException.java,v 1.1 2000/09/26 13:54:04 bmahe Exp $
1.1 bmahe 3: // (c) COPYRIGHT MIT, INRIA and Keio, 2000.
4: // Please first read the full copyright statement in file COPYRIGHT.html
5: package org.w3c.util;
6:
7: /**
1.2 ! ylafon 8: * @author BenoοΏ½t MahοΏ½ (bmahe@w3.org)
! 9: * @version $Revision: 1.1 $
1.1 bmahe 10: */
11: public class InvalidDateException extends Exception {
12:
1.2 ! ylafon 13: private static final long serialVersionUID = -9012791102239300978L;
! 14:
1.1 bmahe 15: public InvalidDateException(String msg) {
1.2 ! ylafon 16: super(msg);
1.1 bmahe 17: }
1.2 ! ylafon 18:
1.1 bmahe 19: }
Webmaster