Class SimpleXMLParserDocumentImpl.MyErrorHandler
- java.lang.Object
-
- com.biglybt.pifimpl.local.utils.xml.simpleparser.SimpleXMLParserDocumentImpl.MyErrorHandler
-
- All Implemented Interfaces:
org.xml.sax.ErrorHandler
- Enclosing class:
- SimpleXMLParserDocumentImpl
private static class SimpleXMLParserDocumentImpl.MyErrorHandler extends java.lang.Object implements org.xml.sax.ErrorHandler
-
-
Constructor Summary
Constructors Constructor Description MyErrorHandler(java.io.PrintWriter out)
Error handler output goes here
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
error(org.xml.sax.SAXParseException spe)
void
fatalError(org.xml.sax.SAXParseException spe)
private java.lang.String
getParseExceptionInfo(org.xml.sax.SAXParseException spe)
Returns a string describing parse exception detailsvoid
warning(org.xml.sax.SAXParseException spe)
-
-
-
Method Detail
-
getParseExceptionInfo
private java.lang.String getParseExceptionInfo(org.xml.sax.SAXParseException spe)
Returns a string describing parse exception details
-
warning
public void warning(org.xml.sax.SAXParseException spe) throws org.xml.sax.SAXException
- Specified by:
warning
in interfaceorg.xml.sax.ErrorHandler
- Throws:
org.xml.sax.SAXException
-
error
public void error(org.xml.sax.SAXParseException spe) throws org.xml.sax.SAXException
- Specified by:
error
in interfaceorg.xml.sax.ErrorHandler
- Throws:
org.xml.sax.SAXException
-
fatalError
public void fatalError(org.xml.sax.SAXParseException spe) throws org.xml.sax.SAXException
- Specified by:
fatalError
in interfaceorg.xml.sax.ErrorHandler
- Throws:
org.xml.sax.SAXException
-
-