Lines Matching +full:error -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang)

421      * @var mixed Error string
424 public $error;
672 * @var bool Should we throw exceptions, or use the old-style error property?
1499 * @param boolean $enable Should we throw exceptions, or use the old-style error property?
1519 $this->error = 'XML or PCRE extensions not loaded!';
1560 $this->error = [];
1567 $this->error[$i] = $this->multifeed_objects[$i]->error();
1576 $this->error = null;
1602 $this->error = "A feed could not be found at `$this->feed_url`. Empty body.";
1603 $this->registry->call(Misc::class, 'error', [$this->error, E_USER_NOTICE, __FILE__, __LINE__]);
1657 $this->error = "A feed could not be found at `$this->feed_url`. This does not appear to be a valid RSS or Atom feed.";
1658 $this->registry->call(Misc::class, 'error', [$this->error, E_USER_NOTICE, __FILE__, __LINE__]);
1678 // We have an error, just set \SimplePie\Misc::error to it and quit
1679 $this->error = $this->feed_url;
1680 $this->error .= sprintf(' is invalid XML, likely due to invalid characters. XML error: %s at line %d, column %d', $parser->get_error_string(), $parser->get_current_line(), $parser->get_current_column());
1682 $this->error = 'The data could not be converted to UTF-8.';
1684 $this->error .= ' You MUST have either the iconv, mbstring or intl (PHP 5.5+) extension installed and enabled.';
1696 $this->error .= ' Try installing/enabling the ' . implode(' or ', $missingExtensions) . ' extension.';
1700 $this->registry->call(Misc::class, 'error', [$this->error, E_USER_NOTICE, __FILE__, __LINE__]);
1824 // If the file connection has an error, set SimplePie::error to that and quit
1826 $this->error = $file->error;
1873 $this->error = "A feed could not be found at `$this->feed_url`; the status code is `$copyStatusCode` and content-type is `$copyContentType`";
1874 $this->registry->call(Misc::class, 'error', [$this->error, E_USER_NOTICE, __FILE__, __LINE__]);
1882 $this->error = $e->getMessage();
1883 $this->registry->call(Misc::class, 'error', [$this->error, E_USER_NOTICE, $e->getFile(), $e->getLine()]);
1914 * Get the error message for the occurred error
1916 * @return string|array Error message, or array of messages for multifeeds
1918 public function error()
1920 return $this->error;
2310 $this->error = $e->getMessage();
2311 $this->registry->call(Misc::class, 'error', [$this->error, E_USER_WARNING, $e->getFile(), $e->getLine()]);