1 6 package org.xml.sax; 7 8 9 49 public interface ErrorHandler { 50 51 52 73 public abstract void warning (SAXParseException exception) 74 throws SAXException ; 75 76 77 102 public abstract void error (SAXParseException exception) 103 throws SAXException ; 104 105 106 134 public abstract void fatalError (SAXParseException exception) 135 throws SAXException ; 136 137 } 138 139 | Popular Tags |