}
}
public void modificaSoglia(Integer idSmell, Integer idSoglia, Integer nuovoValore) throws Exception {
if(idSmell == null)
throw new ParameterNotNullException("Parametro idSmell non pu� essere null");
if(idSoglia == null)
throw new ParameterNotNullException("Parametro idSoglia non pu� essere null");
if(nuovoValore == null)
throw new ParameterNotNullException("Parametro nuovoValore non pu� essere null");
HashMap<Integer,Integer> soglieSmell = soglie.get(idSmell);
if(soglieSmell != null) {
Integer soglia = soglieSmell.get(idSoglia);
if(soglia != null) {