function xmlrpc_error_msg

7.x xmlrpc.inc xmlrpc_error_msg()
6.x xmlrpc.inc xmlrpc_error_msg()

Returns the last XML-RPC client error message.

File

drupal-7.x/includes/xmlrpc.inc, line 612
Drupal XML-RPC library.

Code

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