This is nothing XBEL-specific about this class, apart from its name.
72737475767778
* @throws IOException thrown if an i/o error occurs reading from the schema * url's {@link InputStream} */ public XBELValidatorServiceImpl() throws SAXException, MalformedURLException, IOException, URISyntaxException { xv = new XBELValidator(); }
8081828384858687888990
* Test case setup. */ @Before public void setup() { try { xv = new XBELValidator(XBEL_XSD, ANNO_XSD); } catch (SAXException e) { String err = "SAX exception validating XSDs"; err += ", exception message follows:\n\t"; err += e.getMessage(); fail(err);