Generic hardware access library
|
00001 #include "hal/XMLParserErrorHandler.hh" 00002 00003 HAL::XMLParserErrorHandler::XMLParserErrorHandler( std::string xmlFile ) { 00004 this->xmlFile = xmlFile; 00005 } 00006 00007 void HAL::XMLParserErrorHandler::error( const XERCES_CPP_NAMESPACE::SAXParseException &exception ) 00008 throw (XERCES_CPP_NAMESPACE::SAXParseException) { 00009 throw ( exception ); 00010 } 00011 00012 void HAL::XMLParserErrorHandler::fatalError( const XERCES_CPP_NAMESPACE::SAXParseException &exception ) 00013 throw (XERCES_CPP_NAMESPACE::SAXParseException) { 00014 throw ( exception ); 00015 } 00016 00017 void HAL::XMLParserErrorHandler::warning( const XERCES_CPP_NAMESPACE::SAXParseException &exception ) 00018 throw (XERCES_CPP_NAMESPACE::SAXParseException) { 00019 throw ( exception ); 00020 }