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

- added explanation

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