Skip to content

Commit

Permalink
Merge pull request #56 from abes-esr/CDE-407-Complément-US-222-rappor…
Browse files Browse the repository at this point in the history
…t-d'erreur-en-json

fix ordre message erreur
  • Loading branch information
pierre-maraval authored Apr 29, 2024
2 parents eeaceef + 74fe6c3 commit f1f8ea3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void addErrorMessageExNihilo(String ppn, String erreur) {
}

public void addErrorMessagesImprime(String ppn, String notice, String erreur) {
this.errorMessages.add(new ErrorMessage(ERROR_TYPE.FROMIMPRIME, "{Ppn : " + ppn + ", Notice : " + notice + ", Erreur : " + erreur + "}"));
this.errorMessages.add(new ErrorMessage(ERROR_TYPE.FROMIMPRIME, "{Ppn : " + ppn + ", Erreur : " + erreur +", Notice : " + notice + "}"));
}

}

0 comments on commit f1f8ea3

Please sign in to comment.