summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-06-28 17:19:32 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-06-28 17:55:59 +0100
commit1541387507e669d4c1a634d9d4254d33c151aeaa (patch)
tree8cb054ae73f1895660bca449e1d0c97bb7ef700c /ucb
parent9935affa7b537db00dad84f55b6dd07c52a66e53 (diff)
coverity#1308540 Uncaught exception
Change-Id: I1faf09f6cee0d9dfa4a3b006916978add95ca38c
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/ftp/ftpurl.cxx2
-rw-r--r--ucb/source/ucp/ftp/ftpurl.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/ftp/ftpurl.cxx b/ucb/source/ucp/ftp/ftpurl.cxx
index 1efcf6d84f9a..fcfbf7a059b7 100644
--- a/ucb/source/ucp/ftp/ftpurl.cxx
+++ b/ucb/source/ucp/ftp/ftpurl.cxx
@@ -768,7 +768,7 @@ OUString FTPURL::ren(const OUString& NewTitle)
void FTPURL::del() const
- throw(curl_exception, malformed_exception)
+ throw(curl_exception, malformed_exception, std::exception)
{
FTPDirentry aDirentry(direntry());
diff --git a/ucb/source/ucp/ftp/ftpurl.hxx b/ucb/source/ucp/ftp/ftpurl.hxx
index 6dee7e02eff2..00cc2db29e8f 100644
--- a/ucb/source/ucp/ftp/ftpurl.hxx
+++ b/ucb/source/ucp/ftp/ftpurl.hxx
@@ -137,7 +137,7 @@ namespace ftp {
throw(curl_exception, std::exception);
void del() const
- throw(curl_exception, malformed_exception);
+ throw(curl_exception, malformed_exception, std::exception);
private: