Add missing space to FHIRException message (matches r5 ResourceType now) (#1067)

Co-authored-by: dotasek <david.otasek@smilecdr.com>
This commit is contained in:
dotasek 2023-01-11 16:28:46 -05:00 committed by GitHub
parent edf6d75551
commit ee9fc6e924
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 88 additions and 88 deletions

View File

@ -517,7 +517,7 @@ public enum ResourceType {
if ("VisionPrescription".equals(code))
return VisionPrescription;
throw new FHIRException("Unknown resource type"+code);
throw new FHIRException("Unknown resource type "+code);
}
}

View File

@ -612,7 +612,7 @@ public enum ResourceType {
if ("VisionPrescription".equals(code))
return VisionPrescription;
throw new FHIRException("Unknown resource type"+code);
throw new FHIRException("Unknown resource type "+code);
}
}

View File

@ -632,7 +632,7 @@ public enum ResourceType {
if ("VisionPrescription".equals(code))
return VisionPrescription;
throw new FHIRException("Unknown resource type"+code);
throw new FHIRException("Unknown resource type "+code);
}
}

View File

@ -746,7 +746,7 @@ public enum ResourceType {
if ("VisionPrescription".equals(code))
return VisionPrescription;
throw new FHIRException("Unknown resource type"+code);
throw new FHIRException("Unknown resource type "+code);
}
}