I have the error
Call to undefined method Exception::message()
inside the object calling
Utils::message() (I am catching the Exception and replacing by the message)
The file containing this object is included (require_once) by the top file together with another file defining Utils.
So my question is why the method of Utils is not recognized. All classes are included before the main code. Does the inclusion order matter? Any other hints?
EDIT. My Utils class:
class Utils { private static $count; private static $aggregateCount, $time, $last, $previous; ... public static function message () { echo "\n Count: ", self::$count++, " "; $array = func_get_args(); foreach ($array as $entry) { if (is_array($entry)) { echo print_r($entry); } else { echo $entry; } } } ... } And here is the function using the class:
public function updateManyWithId ($schema, array $bundle) { foreach ($bundle as $hash) { $id = $hash[ID_KEY]; $hash = $this->_adjustId($schema, $hash); try { $this->update($schema, $id, $hash); } catch (Exception $e) { Utils::message("Cannot update hash: ", $hash, $e->message()); } } }
$thispointer when$thisrefers to theExceptionyou threw, and notUtils.