You are here

function xmlrpc_error_msg in Drupal 7

Same name and namespace in other branches
  1. 4 includes/xmlrpc.inc \xmlrpc_error_msg()
  2. 5 includes/xmlrpc.inc \xmlrpc_error_msg()
  3. 6 includes/xmlrpc.inc \xmlrpc_error_msg()

Returns the last XML-RPC client error message.

File

includes/xmlrpc.inc, line 646
Drupal XML-RPC library.

Code

function xmlrpc_error_msg() {
  $error = xmlrpc_error();
  return $error != NULL ? $error->message : NULL;
}