diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-27 20:44:18 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-28 13:22:59 +0100 |
commit | ab58227d1dda3af7765f907b390a292a2f3150dc (patch) | |
tree | a0fbeafcbb80d72e10e49b0b61fb855444a10fd3 /ucb | |
parent | 4105031a933ae08b53cd5703aae7e0b4318071b7 (diff) |
coverity#1308498 Uncaught exception
Change-Id: I979b9281216906188c01c5afa03cee1f6568fbb7
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/ftp/ftpurl.cxx | 2 | ||||
-rw-r--r-- | ucb/source/ucp/ftp/ftpurl.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/ftp/ftpurl.cxx b/ucb/source/ucp/ftp/ftpurl.cxx index 2e316dfcf4ea..1efcf6d84f9a 100644 --- a/ucb/source/ucp/ftp/ftpurl.cxx +++ b/ucb/source/ucp/ftp/ftpurl.cxx @@ -515,7 +515,7 @@ std::vector<FTPDirentry> FTPURL::list( OUString FTPURL::net_title() const - throw(curl_exception) + throw(curl_exception, std::exception) { CURL *curl = m_pFCP->handle(); diff --git a/ucb/source/ucp/ftp/ftpurl.hxx b/ucb/source/ucp/ftp/ftpurl.hxx index 45a35e696c0d..6dee7e02eff2 100644 --- a/ucb/source/ucp/ftp/ftpurl.hxx +++ b/ucb/source/ucp/ftp/ftpurl.hxx @@ -159,7 +159,7 @@ namespace ftp { malformed_exception ); - OUString net_title() const throw(curl_exception); + OUString net_title() const throw(curl_exception, std::exception); }; } |