Skip to content

Commit

Permalink
FEAT ITEM-322-back-modifier-intitule-dun-message-derreur-sur-valeur-p…
Browse files Browse the repository at this point in the history
…pn :

     - modification de messages d'erreur dans FichierInitial.java
  • Loading branch information
EryneKL committed Oct 25, 2024
1 parent 6b12a40 commit 86fb7f0
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 checkFileContent(Demande demande) throws FileCheckingException, IOEx
*/
protected void checkBodyLine(String ligne) throws FileCheckingException {
if (ligne.length() != 9) {
throw new FileCheckingException(Constant.ERR_FILE_ERRLINE + ligneCourante + Constant.ERR_FILE_ONLYONEPPN);
throw new FileCheckingException(Constant.ERR_FILE_LINE + ligneCourante + " : " + Constant.ERR_FILE_ONLYONEPPN);
}
ligneCourante++;
}
Expand Down

0 comments on commit 86fb7f0

Please sign in to comment.