1 4 5 package com.sun.j2ee.blueprints.stringposervice; 6 7 import org.xml.sax.*; 8 9 public class POXMLErrorHandler implements ErrorHandler { 10 11 public void warning(SAXParseException ex) throws SAXException { 12 return; 13 } 14 15 public void error(SAXParseException ex) throws SAXException { 16 throw ex; 17 } 18 19 public void fatalError(SAXParseException ex) throws SAXException { 20 throw ex; 21 } 22 } 23 | Popular Tags |