
// to be thrown when trying to set a time value to be a non-positive number
public class IllegalTimeValueException extends NumberFormatException {

    public IllegalTimeValueException()
    {
        super(" Any value of time must be a positive integer");
    }
}
