Skip to content
Snippets Groups Projects
Commit 74f0686c authored by Jens Steidl's avatar Jens Steidl :baby_chick:
Browse files

- added explanation

parent abff43f3
Branches
No related tags found
No related merge requests found
......@@ -119,15 +119,15 @@ public class SLUBStoragePlugin extends AbstractStorageHandler {
}
catch (IOException e) {
log.error("SLUBStoragePlugin.checkFixity(), I/O error, " + e.getMessage());
throw e;
throw e; // let Rosetta know something broke, creates technical issue in workbench
}
catch (NoSuchAlgorithmException e) {
log.error( "SLUBStoragePlugin.checkFixity(), missed Algorithm, " + e.getMessage());
throw e;
throw e; // let Rosetta know something broke, creates technical issue in workbench
}
catch (Exception e) {
log.error( "SLUBStoragePlugin.checkFixity(), unknown problem, " + e.getMessage());
throw e;
throw e; // let Rosetta know something broke, creates technical issue in workbench
}
finally
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment