Skip to content

Commit

Permalink
FIX : Modif message erreur fichier introuvable
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre-maraval committed Sep 30, 2024
1 parent b651bd4 commit f6aa200
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public Resource loadAsResource(String filename) {
if (resource.exists() && resource.isReadable()) {
return resource;
} else {
throw new StorageFileNotFoundException(Constant.ERR_FILE_READING + filename + " sur le chemin : " + file.toUri());
throw new StorageFileNotFoundException(Constant.ERR_FILE_READING + filename);
}
} catch (MalformedURLException e) {
throw new StorageFileNotFoundException(Constant.ERR_FILE_READING + filename, e);
Expand Down

0 comments on commit f6aa200

Please sign in to comment.