01: // InvalidDateException.java
02: // $Id: InvalidDateException.java,v 1.1.1.1 2004/06/16 13:15:12 flaviotordini Exp $
03: // (c) COPYRIGHT MIT, INRIA and Keio, 2000.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05: package org.w3c.util;
06:
07: /**
08: * @version $Revision: 1.1.1.1 $
09: * @author Benoît Mahé (bmahe@w3.org)
10: */
11: public class InvalidDateException extends Exception {
12:
13: public InvalidDateException(String msg) {
14: super(msg);
15: }
16:
17: }
|