this.mes = Integer.parseInt(mesStr);
this.ano = Integer.parseInt(anoStr);
this.horario = new Schedule(Integer.parseInt(segundoStr), Integer.parseInt(minutoStr),
Integer.parseInt(horaStr));
} catch (Exception e) {
throw new InvalidDateException(dia, mes, ano);
}
validaData(dia, mes, ano);
}