1 37 38 package com.sun.j2ee.blueprints.opc.webservicebroker.provider; 39 40 import org.xml.sax.*; 41 42 public class BrokerXMLMessageErrorHandler implements ErrorHandler { 43 44 public void warning(SAXParseException ex) throws SAXException { 45 return; 46 } 47 48 public void error(SAXParseException ex) throws SAXException { 49 throw ex; 50 } 51 52 public void fatalError(SAXParseException ex) throws SAXException { 53 throw ex; 54 } 55 } 56 | Popular Tags |