summaryrefslogtreecommitdiffstats
path: root/src/lib/abrt_xmlrpc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/abrt_xmlrpc.cpp')
-rw-r--r--src/lib/abrt_xmlrpc.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/abrt_xmlrpc.cpp b/src/lib/abrt_xmlrpc.cpp
index bf74f05b..6dfa8313 100644
--- a/src/lib/abrt_xmlrpc.cpp
+++ b/src/lib/abrt_xmlrpc.cpp
@@ -18,15 +18,13 @@
*/
#include "abrtlib.h"
#include "abrt_xmlrpc.h"
-#include "abrt_exception.h"
void throw_xml_fault(xmlrpc_env *env)
{
std::string errmsg = ssprintf("XML-RPC Fault(%d): %s", env->fault_code, env->fault_string);
xmlrpc_env_clean(env); // this is needed ONLY if fault_occurred
xmlrpc_env_init(env); // just in case user catches ex and _continues_ to use env
- error_msg("%s", errmsg.c_str()); // show error in daemon log
- throw CABRTException(EXCEP_PLUGIN, errmsg.c_str());
+ error_msg_and_die("%s", errmsg.c_str()); // show error in daemon log
}
void throw_if_xml_fault_occurred(xmlrpc_env *env)