summaryrefslogtreecommitdiff
path: root/xmlsecurity/source/xmlsec/saxhelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmlsecurity/source/xmlsec/saxhelper.cxx')
-rw-r--r--xmlsecurity/source/xmlsec/saxhelper.cxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/xmlsecurity/source/xmlsec/saxhelper.cxx b/xmlsecurity/source/xmlsec/saxhelper.cxx
index 3a6a499eb94b..6fb61db139f6 100644
--- a/xmlsecurity/source/xmlsec/saxhelper.cxx
+++ b/xmlsecurity/source/xmlsec/saxhelper.cxx
@@ -214,7 +214,6 @@ void SAXHelper::setCurrentNode(const xmlNodePtr pNode)
* XDocumentHandler -- start an xml document
*/
void SAXHelper::startDocument()
- throw( cssxs::SAXException , cssu::RuntimeException )
{
if( m_pParserCtxt == nullptr)
{
@@ -243,7 +242,6 @@ void SAXHelper::startDocument()
* XDocumentHandler -- end an xml document
*/
void SAXHelper::endDocument()
- throw( cssxs::SAXException , cssu::RuntimeException )
{
m_pSaxHandler->endDocument( m_pParserCtxt ) ;
}
@@ -254,7 +252,6 @@ void SAXHelper::endDocument()
void SAXHelper::startElement(
const OUString& aName,
const cssu::Sequence< cssxcsax::XMLAttribute >& aAttributes )
- throw( cssxs::SAXException , cssu::RuntimeException )
{
const xmlChar* fullName = nullptr ;
const xmlChar** attrs = nullptr ;
@@ -290,7 +287,6 @@ void SAXHelper::startElement(
* XDocumentHandler -- end an xml element
*/
void SAXHelper::endElement( const OUString& aName )
- throw( cssxs::SAXException , cssu::RuntimeException )
{
xmlChar* fullname = nullptr ;
@@ -308,7 +304,6 @@ void SAXHelper::endElement( const OUString& aName )
* XDocumentHandler -- an xml element or cdata characters
*/
void SAXHelper::characters( const OUString& aChars )
- throw( cssxs::SAXException , cssu::RuntimeException )
{
const xmlChar* chars = nullptr ;
int length = 0 ;
@@ -326,7 +321,6 @@ void SAXHelper::characters( const OUString& aChars )
* XDocumentHandler -- ignorable xml white space
*/
void SAXHelper::ignorableWhitespace( const OUString& aWhitespaces )
- throw( cssxs::SAXException , cssu::RuntimeException )
{
const xmlChar* chars = nullptr ;
int length = 0 ;
@@ -346,7 +340,6 @@ void SAXHelper::ignorableWhitespace( const OUString& aWhitespaces )
void SAXHelper::processingInstruction(
const OUString& aTarget,
const OUString& aData )
- throw( cssxs::SAXException , cssu::RuntimeException )
{
xmlChar* target = nullptr ;
xmlChar* data = nullptr ;