Only {@link SchemaBuilder} can throw this exception toabort the parsing in the middle.
737738739740741742743744
try { if (eh != null) { eh.error(message); } } catch (SAXException e) { throw new BuildException(e); } }
151152153154155156157158
throw new EOFException(); } else { maxNextCharInd += i; } } catch (IOException e) { throw new BuildException(e); } }
9192939495969798
r = new InputStreamReader(in, encoding); } return r; } catch (IOException e) { throw new BuildException(e); } }
193194195196197198199200201
loc.setSystemId(sourceUri); try { eh.error(new SAXParseException(message, loc)); } catch (SAXException se) { throw new BuildException(se); } } }
208209210211212213214215216
loc.setSystemId(sourceUri); try { eh.error(new SAXParseException(localizer.message(e.getKey()), loc)); } catch (SAXException se) { throw new BuildException(se); } } }