summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/elementlist.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom/elementlist.hxx')
-rw-r--r--unoxml/source/dom/elementlist.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/unoxml/source/dom/elementlist.hxx b/unoxml/source/dom/elementlist.hxx
index da8d99600c28..b875ca817277 100644
--- a/unoxml/source/dom/elementlist.hxx
+++ b/unoxml/source/dom/elementlist.hxx
@@ -72,16 +72,16 @@ namespace DOM
/**
The number of nodes in the list.
*/
- virtual sal_Int32 SAL_CALL getLength() throw (RuntimeException);
+ virtual sal_Int32 SAL_CALL getLength() throw (RuntimeException, std::exception);
/**
Returns the indexth item in the collection.
*/
virtual Reference< XNode > SAL_CALL item(sal_Int32 index)
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
// XEventListener
virtual void SAL_CALL handleEvent(const Reference< XEvent >& evt)
- throw (RuntimeException);
+ throw (RuntimeException, std::exception);
};
}