final MessageBundle bundle, final FullData data)
throws ProcessingException
{
final String value = data.getInstance().getNode().textValue();
try {
new URITemplate(value);
} catch (URITemplateParseException ignored) {
report.error(newMsg(data, bundle, "err.format.uriTemplate.invalid")
.putArgument("value", value));
}
}