From c7051732c0751a361cdfca1707111a53bef6aab4 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 13 Feb 2014 12:45:45 +0000 Subject: coverity#707424 Uncaught exception Change-Id: I4111feef91c4de993c490c3a702973c8fae69441 --- ucb/source/ucp/ftp/ftpurl.cxx | 2 +- ucb/source/ucp/ftp/ftpurl.hxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'ucb') 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: -- cgit