}
catch (NumberFormatException e)
{
if (plaqueMinMaxDefini)
{
throw new PlaqueException("La plaque n'est pas un numéro. ");
}
}
if (plaqueMinMaxDefini)
{
if (plaqueint < categorieParticipante.getPlaqueMin()
|| plaqueint > categorieParticipante.getPlaqueMax())
{
throw new PlaqueException("La plaque n'est pas dans la plage"
+ " de plaques assignées. ");
}
if (plaqueGeleMinMaxDefini)
{
if (plaqueint >= categorieParticipante.getPlaqueGeleMin()
&& plaqueint <= categorieParticipante
.getPlaqueGeleMax())
{
throw new PlaqueException(
"La plaque est dans la plage des "
+ "plaques gelées. ");
}
}
}