summaryrefslogtreecommitdiff
path: root/xmloff/source/transform/TransformerBase.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/transform/TransformerBase.cxx')
-rw-r--r--xmloff/source/transform/TransformerBase.cxx16
1 files changed, 2 insertions, 14 deletions
diff --git a/xmloff/source/transform/TransformerBase.cxx b/xmloff/source/transform/TransformerBase.cxx
index 08c4a21d00e5..92c569af0d41 100644
--- a/xmloff/source/transform/TransformerBase.cxx
+++ b/xmloff/source/transform/TransformerBase.cxx
@@ -211,20 +211,17 @@ XMLTransformerBase::~XMLTransformerBase() throw ()
}
void SAL_CALL XMLTransformerBase::startDocument()
- throw( SAXException, RuntimeException, std::exception )
{
m_xHandler->startDocument();
}
void SAL_CALL XMLTransformerBase::endDocument()
- throw( SAXException, RuntimeException, std::exception)
{
m_xHandler->endDocument();
}
void SAL_CALL XMLTransformerBase::startElement( const OUString& rName,
const Reference< XAttributeList >& rAttrList )
- throw(SAXException, RuntimeException, std::exception)
{
SvXMLNamespaceMap *pRewindMap = nullptr;
@@ -321,7 +318,6 @@ void SAL_CALL XMLTransformerBase::endElement( const OUString&
rName
#endif
)
- throw(SAXException, RuntimeException, std::exception)
{
if( !m_pContexts.empty() )
{
@@ -355,7 +351,6 @@ rName
}
void SAL_CALL XMLTransformerBase::characters( const OUString& rChars )
- throw(SAXException, RuntimeException, std::exception)
{
if( !m_pContexts.empty() )
{
@@ -364,53 +359,47 @@ void SAL_CALL XMLTransformerBase::characters( const OUString& rChars )
}
void SAL_CALL XMLTransformerBase::ignorableWhitespace( const OUString& rWhitespaces )
- throw(SAXException, RuntimeException, std::exception)
{
m_xHandler->ignorableWhitespace( rWhitespaces );
}
void SAL_CALL XMLTransformerBase::processingInstruction( const OUString& rTarget,
const OUString& rData )
- throw(SAXException, RuntimeException, std::exception)
{
m_xHandler->processingInstruction( rTarget, rData );
}
void SAL_CALL XMLTransformerBase::setDocumentLocator( const Reference< XLocator >& rLocator )
- throw(SAXException, RuntimeException, std::exception)
{
m_xLocator = rLocator;
}
// XExtendedDocumentHandler
-void SAL_CALL XMLTransformerBase::startCDATA() throw(SAXException, RuntimeException, std::exception)
+void SAL_CALL XMLTransformerBase::startCDATA()
{
if( m_xExtHandler.is() )
m_xExtHandler->startCDATA();
}
-void SAL_CALL XMLTransformerBase::endCDATA() throw(RuntimeException, std::exception)
+void SAL_CALL XMLTransformerBase::endCDATA()
{
if( m_xExtHandler.is() )
m_xExtHandler->endCDATA();
}
void SAL_CALL XMLTransformerBase::comment( const OUString& rComment )
- throw(SAXException, RuntimeException, std::exception)
{
if( m_xExtHandler.is() )
m_xExtHandler->comment( rComment );
}
void SAL_CALL XMLTransformerBase::allowLineBreak()
- throw(SAXException, RuntimeException, std::exception)
{
if( m_xExtHandler.is() )
m_xExtHandler->allowLineBreak();
}
void SAL_CALL XMLTransformerBase::unknown( const OUString& rString )
- throw(SAXException, RuntimeException, std::exception)
{
if( m_xExtHandler.is() )
m_xExtHandler->unknown( rString );
@@ -418,7 +407,6 @@ void SAL_CALL XMLTransformerBase::unknown( const OUString& rString )
// XInitialize
void SAL_CALL XMLTransformerBase::initialize( const Sequence< Any >& aArguments )
- throw(Exception, RuntimeException, std::exception)
{
const sal_Int32 nAnyCount = aArguments.getLength();
const Any* pAny = aArguments.getConstArray();