/** * Adds an error message to the error log in the lavacharts object. * * @param string $msg */ public function error($msg) { Lavacharts::_set_error($this->className, $msg); }
/** * Adds the error message to the error log in the lavacharts master object. * * @param string $msg error message. */ private function error($msg) { Lavacharts::_set_error(get_class($this), $msg); }