enhancement
If an error occurs while parsing a ConfigurationItem, a ConfigurationException is thrown, whose "cause" may still contain useful information.
There should be a service method to generate an HTMLFragment for the InfoService that displays this information.
Implementation
Using ` com.top_logic.event.infoservice.InfoService#messages(ResKey, Throwable)`, you can create an `HTMLFragment` for ` InfoService#show()` that essentially displays the following:
<Translator ResKey>
- <message of the Throwable>
- <message from Throwable#getCause()>
- <message from Throwable#getCause()#getCause()>
- ...
Test
No test.