diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-08 20:52:41 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-08 20:52:41 +0000 |
commit | 12e0102f39ee3a0398a4369bbc4af4ea0f51ca14 (patch) | |
tree | d2780c6f61eddd6953c6ef3991fd0cbfdb63a94f /sax | |
parent | 249cc89a292bb18e28d0f8447db70cd1adafcaad (diff) |
coverity#1130446 Uncaught exception
Change-Id: I9225b4ffd507fa3d666862a55dae349c9a76e91d
Diffstat (limited to 'sax')
-rw-r--r-- | sax/source/fastparser/fastparser.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sax/source/fastparser/fastparser.cxx b/sax/source/fastparser/fastparser.cxx index 0361ba856000..067b13a60e07 100644 --- a/sax/source/fastparser/fastparser.cxx +++ b/sax/source/fastparser/fastparser.cxx @@ -1357,7 +1357,8 @@ FastSaxParser::~FastSaxParser() } void FastSaxParser::parseStream( const xml::sax::InputSource& aInputSource ) - throw (xml::sax::SAXException, io::IOException, uno::RuntimeException) + throw (xml::sax::SAXException, io::IOException, + uno::RuntimeException, std::exception) { mpImpl->parseStream(aInputSource); } |