//*********************************************************************************
// class tig.DateFormatException
// Software released under the General Public License (version 2 or later), available at
// http://www.gnu.org/copyleft/gpl.html
//*********************************************************************************
package tig;
/**********************************************************************************
Exception to throw if a date is not correctly formatted
@author Thierry Graff
@history oct 05 2001 : Creation
**********************************************************************************/
public class DateFormatException extends Exception{
public DateFormatException(String message){ super(message); }
public DateFormatException(){ super(); }
}//end class DateFormatException