Skip to content

Commit 9c0268c

Browse files
CoderMChuQuyenLy87
authored andcommitted
RAP-93 Add failure message
1 parent ca7c9eb commit 9c0268c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: src/main/java/org/ihtsdo/rvf/importer/RvfAssertionsDatabasePrimerService.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ public void importAssertionsAndGroups() throws IOException {
4949
}
5050
} catch (FileNotFoundException e) {
5151
LOGGER.error("Failed to import assertions and assertion groups due to no manifest.xml found", e);
52-
throw e;
52+
throw new IOException("No manifest.xml file found in the assertions directory.", e);
5353
}
54+
5455
}
5556
}

0 commit comments

Comments
 (0)