diff options
| author | Zdenek Prikryl <zprikryl@redhat.com> | 2009-07-24 15:37:49 +0200 |
|---|---|---|
| committer | Zdenek Prikryl <zprikryl@redhat.com> | 2009-07-24 15:37:49 +0200 |
| commit | cd561b99cd711d8be2b84280fa170943e5a4da60 (patch) | |
| tree | e562dc87dab590863645ca3370c2ac8d51308427 /lib/Plugins/Bugzilla.cpp | |
| parent | f889932408f5912379f92e24c0e8f213a1f6c451 (diff) | |
| download | abrt-cd561b99cd711d8be2b84280fa170943e5a4da60.tar.gz abrt-cd561b99cd711d8be2b84280fa170943e5a4da60.tar.xz abrt-cd561b99cd711d8be2b84280fa170943e5a4da60.zip | |
fixed exception throwing
Diffstat (limited to 'lib/Plugins/Bugzilla.cpp')
| -rw-r--r-- | lib/Plugins/Bugzilla.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
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; } |
