Add missing space to FHIRException message (matches r5 ResourceType now) (#1067)
Co-authored-by: dotasek <david.otasek@smilecdr.com>
This commit is contained in:
parent
edf6d75551
commit
ee9fc6e924
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue