diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-08 10:49:37 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-08 12:18:54 +0100 |
commit | c5eddc903a7871e9a8eb1c5783266f200c026fe3 (patch) | |
tree | 88c3ab291e29e8120e10ebf8f142df4ce8c30331 /ucb | |
parent | f193c1bdf17dba6d1c35b0d4d1456634a47d3974 (diff) |
coverity#707425 Uncaught exception
Change-Id: I9c9fb5ed321e857aec58b10c9f8d028c06327113
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 9ec0183248fc..69693d6f1533 100644 --- a/ucb/source/ucp/ftp/ftpurl.cxx +++ b/ucb/source/ucp/ftp/ftpurl.cxx @@ -675,7 +675,7 @@ void FTPURL::insert(bool replaceExisting,void* stream) const void FTPURL::mkdir(bool ReplaceExisting) const - throw(curl_exception) + throw (curl_exception, malformed_exception) { OString title; if(!m_aPathSegmentVec.empty()) { diff --git a/ucb/source/ucp/ftp/ftpurl.hxx b/ucb/source/ucp/ftp/ftpurl.hxx index 00f29a35226f..42d141540d02 100644 --- a/ucb/source/ucp/ftp/ftpurl.hxx +++ b/ucb/source/ucp/ftp/ftpurl.hxx @@ -131,7 +131,7 @@ namespace ftp { throw(curl_exception); void mkdir(bool ReplaceExisting) const - throw(curl_exception); + throw(curl_exception, malformed_exception); OUString ren(const OUString& NewTitle) throw(curl_exception); |