Skip to content

Commit

Permalink
fix(Z1934): fix errore per utente non trovato 20240115
Browse files Browse the repository at this point in the history
  • Loading branch information
federico-tocci-dxc authored and sgravinadxc committed Jan 15, 2025
1 parent 869c5f6 commit 869b5ce
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ public void associaFacilitatoreAEnteSedeProgetto(EnteSedeProgettoFacilitatoreReq
boolean esisteUtente = this.utenteService.esisteUtenteByCodiceFiscale(codiceFiscaleUtente);
if(!esisteUtente) {
throw new EnteSedeProgettoFacilitatoreException(
String.format(CodiceErroreEnum.EN07.getDescrizioneErrore(), codiceFiscaleUtente),
CodiceErroreEnum.EN07);
String.format(CodiceErroreEnum.U20.getDescrizioneErrore(), codiceFiscaleUtente),
CodiceErroreEnum.U20);
}

// verifico se ente, sede e progetto esistono
Expand Down

0 comments on commit 869b5ce

Please sign in to comment.