From cd561b99cd711d8be2b84280fa170943e5a4da60 Mon Sep 17 00:00:00 2001 From: Zdenek Prikryl Date: Fri, 24 Jul 2009 15:37:49 +0200 Subject: fixed exception throwing --- lib/Plugins/Bugzilla.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lib/Plugins/Bugzilla.cpp') diff --git a/lib/Plugins/Bugzilla.cpp b/lib/Plugins/Bugzilla.cpp index 4d834d7..be913d5 100644 --- a/lib/Plugins/Bugzilla.cpp +++ b/lib/Plugins/Bugzilla.cpp @@ -282,9 +282,8 @@ void CReporterBugzilla::Report(const map_crash_report_t& pCrashReport, const std } catch (CABRTException& e) { - throw CABRTException(EXCEP_PLUGIN, std::string("CReporterBugzilla::Report(): ") + e.what()); delete m_pCarriageParm; - throw e; + throw CABRTException(EXCEP_PLUGIN, std::string("CReporterBugzilla::Report(): ") + e.what()); } delete m_pCarriageParm; } -- cgit