You are here

function nusoap_base::getError in Salesforce Suite 5.2

Same name in this branch
  1. 5.2 includes/nusoap.php \nusoap_base::getError()
  2. 5.2 includes/nusoap.orig.php \nusoap_base::getError()
Same name and namespace in other branches
  1. 5 includes/nusoap.php \nusoap_base::getError()
  2. 5 includes/nusoap.orig.php \nusoap_base::getError()

* returns error string if present * *

Return value

mixed error string or false * @access public

File

includes/nusoap.orig.php, line 335

Class

nusoap_base
nusoap_base

Code

function getError() {
  if ($this->error_str != '') {
    return $this->error_str;
  }
  return false;
}