use of gov.cms.qpp.conversion.decode.XmlInputFileException in project qpp-conversion-tool by CMSgov.
the class Converter method encode.
/**
* Place transformed content into an input stream
*
* @return content resulting from the transformation
*/
private JsonWrapper encode() {
JsonOutputEncoder encoder = getEncoder();
DEV_LOG.info("Encoding template ID {}", decoded.getType());
try {
encoder.setNodes(Collections.singletonList(decoded));
JsonWrapper qpp = encoder.encode();
details.addAll(encoder.getDetails());
return qpp;
} catch (EncodeException e) {
throw new XmlInputFileException("Issues decoding/encoding.", e);
}
}
Aggregations