1 56 57 package org.jdom.input; 58 59 import org.xml.sax.*; 60 61 67 68 public class BuilderErrorHandler implements ErrorHandler { 69 70 private static final String CVS_ID = 71 "@(#) $RCSfile: BuilderErrorHandler.java,v $ $Revision: 1.12 $ $Date: 2004/02/06 09:28:31 $ $Name: $"; 72 73 82 public void warning(SAXParseException exception) throws SAXException { 83 } 85 86 95 public void error(SAXParseException exception) throws SAXException { 96 throw exception; 97 } 98 99 108 public void fatalError(SAXParseException exception) throws SAXException { 109 throw exception; 110 } 111 } 112 | Popular Tags |