Another XIG fix

This commit is contained in:
Grahame Grieve 2023-09-08 10:22:13 +10:00
parent 84c28fd4f9
commit 71ff6a81db
1 changed files with 6 additions and 2 deletions

View File

@ -32,6 +32,9 @@ public class ExampleScenarioRenderer extends TerminologyRenderer {
public boolean render(XhtmlNode x, ExampleScenario scen) throws FHIRException {
try {
if (context.getScenarioMode() == null) {
return renderActors(x, scen);
} else {
switch (context.getScenarioMode()) {
case ACTORS:
return renderActors(x, scen);
@ -42,6 +45,7 @@ public class ExampleScenarioRenderer extends TerminologyRenderer {
default:
throw new FHIRException("Unknown ExampleScenario Renderer Mode " + context.getScenarioMode());
}
}
} catch (Exception e) {
throw new FHIRException("Error rendering ExampleScenario " + scen.getUrl(), e);
}