diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-13 12:45:45 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-13 14:56:17 +0000 |
commit | c7051732c0751a361cdfca1707111a53bef6aab4 (patch) | |
tree | e93eb605183e9dc1ec85e119b3e2ca30652b04a6 /ucb | |
parent | cf2a6c290df1c5d2c1564baa7080325cb2e76157 (diff) |
coverity#707424 Uncaught exception
Change-Id: I4111feef91c4de993c490c3a702973c8fae69441
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 284a24981b7f..c34917b04a37 100644 --- a/ucb/source/ucp/ftp/ftpurl.cxx +++ b/ucb/source/ucp/ftp/ftpurl.cxx @@ -769,7 +769,7 @@ OUString FTPURL::ren(const OUString& NewTitle) void FTPURL::del() const - throw(curl_exception) + throw(curl_exception, malformed_exception) { FTPDirentry aDirentry(direntry()); diff --git a/ucb/source/ucp/ftp/ftpurl.hxx b/ucb/source/ucp/ftp/ftpurl.hxx index 7d13b5ccc2c2..511c29c3f0ce 100644 --- a/ucb/source/ucp/ftp/ftpurl.hxx +++ b/ucb/source/ucp/ftp/ftpurl.hxx @@ -138,7 +138,7 @@ namespace ftp { throw(curl_exception); void del() const - throw(curl_exception); + throw(curl_exception, malformed_exception); private: |