in.setCharacterStream(input);
parser.parse(in);
handler.writeDocument(abvs);
input.close();
} catch (FileNotFoundException e) {
HyracksDataException hde = new VXQueryFileNotFoundException(e, file);
hde.setNodeId(nodeId);
throw hde;
} catch (SAXException e) {
HyracksDataException hde = new VXQueryParseException(e, file);
hde.setNodeId(nodeId);
throw hde;
} catch (IOException e) {
HyracksDataException hde = new HyracksDataException(e);
hde.setNodeId(nodeId);
throw hde;
}
}