List of usage examples for javax.xml.stream XMLStreamException XMLStreamException
public XMLStreamException(String msg, Location location, Throwable th)
From source file:org.apache.tajo.catalog.store.XMLCatalogSchemaManager.java
protected StoreObject loadCatalogStore(XMLStreamReader xmlReader) throws XMLStreamException { try {/*from ww w .j ava 2 s . co m*/ JAXBElement<StoreObject> elem = unmarshaller.unmarshal(xmlReader, StoreObject.class); return elem.getValue(); } catch (JAXBException e) { throw new XMLStreamException(e.getMessage(), xmlReader.getLocation(), e); } }