HomeSort by relevance Sort by last modified time
    Searched refs:SAXParseException (Results 1 - 25 of 71) sorted by null

1 2 3

  /libcore/luni/src/main/java/org/xml/sax/
ErrorHandler.java 28 * except that <em>SAXParseException</em>s will be thrown for fatal errors.
47 * @see org.xml.sax.SAXParseException
71 * @see org.xml.sax.SAXParseException
73 public abstract void warning (SAXParseException exception)
100 * @see org.xml.sax.SAXParseException
102 public abstract void error (SAXParseException exception)
132 * @see org.xml.sax.SAXParseException
134 public abstract void fatalError (SAXParseException exception)
SAXParseException.java 4 // $Id: SAXParseException.java,v 1.11 2004/04/21 13:05:02 dmegginson Exp $
21 * will receive a SAXParseException as the argument to the handlers
37 public class SAXParseException extends SAXException {
47 * Create a new SAXParseException from a message and a Locator.
58 public SAXParseException (String message, Locator locator) {
70 * Wrap an existing exception in a SAXParseException.
84 public SAXParseException (String message, Locator locator,
97 * Create a new SAXParseException.
117 public SAXParseException (String message, String publicId, String systemId,
126 * Create a new SAXParseException with an embedded exception
    [all...]
HandlerBase.java 319 * @see org.xml.sax.SAXParseException
321 public void warning (SAXParseException e)
340 * @see org.xml.sax.SAXParseException
342 public void error (SAXParseException e)
352 * <p>The default implementation throws a SAXParseException.
364 * @see org.xml.sax.SAXParseException
366 public void fatalError (SAXParseException e)
  /frameworks/base/sax/java/android/sax/
BadXmlException.java 19 import org.xml.sax.SAXParseException;
25 class BadXmlException extends SAXParseException {
Element.java 20 import org.xml.sax.SAXParseException;
190 void checkRequiredChildren(Locator locator) throws SAXParseException {