use of nl.nn.adapterframework.xml.SaxException in project iaf by ibissource.
the class JsonWriter method endArray.
@Override
public void endArray() throws SAXException {
try {
stateStack.pop();
writer.write("]");
} catch (IOException e) {
throw new SaxException(e);
}
}
use of nl.nn.adapterframework.xml.SaxException in project iaf by ibissource.
the class JsonWriter method endObject.
@Override
public void endObject() throws SAXException {
try {
stateStack.pop();
writer.write("}");
} catch (IOException e) {
throw new SaxException(e);
}
}
Aggregations