Skip to content

Commit

Permalink
FIX ITEM-400-back-controle-lexistence-dun-fichier-de-sauvegarde-csv-a…
Browse files Browse the repository at this point in the history
…vant-ecriture :

     - modification de la remontée d'une erreur dans FichierSauvegardeSuppCsv.java
  • Loading branch information
EryneKL committed Nov 27, 2024
1 parent 33a60b9 commit d8580d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ private boolean isHeaderExist() {
String line = br.readLine();
return line != null && line.startsWith("TYPE (008);PPN;");
} catch (IOException ex) {
throw new StorageException(Constant.ERR_FILE_WRITING + " de sauvegarde csv");
throw new StorageException(Constant.ERR_FILE_READING + " de sauvegarde csv");
}
}
}

0 comments on commit d8580d4

Please sign in to comment.