//*********************************************************************************
// class tig.HourFormatException
// 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 an hour is not correctly formatted
@author Thierry Graff
@history oct 05 2001 : Creation
**********************************************************************************/
public class HourFormatException extends Exception{
public HourFormatException(String message){ super(message); }
public HourFormatException(){ super(); }
}//end class HourFormatException