Update hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/term/LoadedFileDescriptors.java

Co-authored-by: Diederik Muylwyk <diederik.muylwyk@gmail.com>
This commit is contained in:
IanMMarshall 2020-10-07 11:01:54 -04:00 committed by GitHub
parent e24e233ec6
commit 1bac646dc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ public class LoadedFileDescriptors implements Closeable {
if (!multiPartFilesFound && !singlePartFilesFound) {
msg = "Could not find any of the PartLink files: " + notFoundMulti + " nor " + notFoundSingle;
} else {
msg = "Found both the single PartLink file, " + theSinglePartLinkFile + ", and the split PartLink files: " + theMultiPartLinkFiles;
msg = "Only either the single PartLink file or the split PartLink files can be present. Found both the single PartLink file, " + theSinglePartLinkFile + ", and the split PartLink files: " + theMultiPartLinkFiles;
}
throw new UnprocessableEntityException(msg);
}