* @throws javax.xml.stream.XMLStreamException if there is an error while making the StAX reader.
*/
@Override
public javax.xml.stream.XMLStreamReader getReader() throws XMLStreamException {
try {
return new BadgerFishXMLStreamReader(json);
} catch (JSONException e) {
throw new XMLStreamException(e);
}
}