Home
last modified time | relevance | path

Searched refs:error (Results 51 – 64 of 64) sorted by path

123

/dokuwiki/vendor/kissifrot/php-ixr/src/Server/
H A DServer.php41 $this->error(-32700, 'parse error. not well formed');
44 $this->error(-32600, 'server error. invalid xml-rpc. not conforming to spec. Request must be a methodCall');
48 // Is the result an error?
50 $this->error($result);
77 return new Error(-32601, 'server error. requested method ' . $methodname . ' does not exist.');
98 return new Error(-32601, "server error. requested callable '{$method}' does not exist.");
103 public function error($error, argument
[all...]
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A DREADME.md
H A Dlessc.inc.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php807 $error = self::$status_codes[$status];
811 $this->sftp_errors[] = "$error: $message";
813 $this->sftp_errors[] = $error;
1601 * Returns true on success or false on error.
1648 * Returns true on success or false on error.
1667 * Returns the new file permissions on success or false on error.
3224 * a file as a directory and see if an error is returned or you could try to parse the
3459 * Returns the last error on the SFTP layer
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md32 - Fix error handling for PHP 8.1 by @cedric-anne in [#747](https://github.com/simplepie/simplepie/pull/747)
117 - Fix a small typo in the error() function Docblock by @audrasjb in [#712](https://github.com/simplepie/simplepie/pull/712)
217 * PHP 7.1 Support: Fixed PHP error when trying to use a non-numeric value in `round()`. [#458](https://github.com/simplepie/simplepie/pull/458)
219 * Fixed the error message shown when a feed has an empty body. [#487](https://github.com/simplepie/simplepie/pull/487)
220 * Added an error message when the XML or PCRE PHP extensions are missing. [#468](https://github.com/simplepie/simplepie/pull/468)
224 * Refactored the UTF-8 conversion error message. [#467](https://github.com/simplepie/simplepie/pull/467)
232 * Improvements to the compatibility test and error messages. [#488](https://github.com/simplepie/simplepie/pull/488)
260 * Added `SimplePie_Exception` for internally reporting errors. Also, use this to show an error when trying to load the class instead of causing a failure. [#241](https://github.com/simplepie/simplepie/pull/241)
263 * Added the `feed_url` to a returned error message. [#348](https://github.com/simplepie/simplepie/pull/348)
279 * Fixed cURL not failing when the server returns an error
[all...]
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DReadMe.txt30 You can query the occured error by calling the method get_last_error().
H A Didna_convert.class.php346 * Use this method to get the last error ocurred
348 * @return string The last error, that occured
547 * Internal error handling method
550 function _error($error = '') argument
552 $this->_error = $error;
564 $error = false;
/dokuwiki/vendor/simplepie/simplepie/src/
H A DFile.php68 public $error; variable in SimplePie\\File
120 $this->error = 'cURL error ' . curl_errno($fp) . ': ' . curl_error($fp);
157 $this->error = 'fsockopen error: ' . $errstr;
214 $this->error = 'Unable to decode HTTP "gzip" stream';
229 $this->error = 'Unable to decode HTTP "deflate" stream';
235 $this->error = 'Unknown content coding';
241 $this->error = 'fsocket timed out';
250 $this->error
[all...]
H A DMisc.php147 public static function error($message, $level, $file, $line) function in SimplePie\\Misc
2129 if ($sp->error() !== null) {
2130 $info .= 'Error occurred: ' . $sp->error() . "\n";
2132 $info .= "No error found.\n";
H A DParser.php226 if ($error = libxml_get_last_error()) {
227 $this->error_code = $error->code;
228 $this->error_string = $error->message;
229 $this->current_line = $error->line;
230 $this->current_column = $error->column;
H A DSimplePie.php424 public $error; variable in SimplePie\\SimplePie
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', [
1918 public function error() global() function in SimplePie\\SimplePie
[all...]
/dokuwiki/vendor/splitbrain/php-cli/
H A DREADME.md94 ``error()`` (red) or ``fatal()`` (red). The latter will also exit the programm with a non-zero exit code.
152 * error
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DBase.php56 'error' => array(
167 'Valid levels are: debug, info, notice, success, warning, error, critical, alert, emergency.',
252 * Exits the program on a fatal error
254 * @param \Exception|string $error either an exception or an error message
257 public function fatal($error, array $context = array())
260 if (is_object($error) && is_a($error, 'Exception')) {
261 /** @var Exception $error */
262 $this->logMessage('debug', get_class($error)
188 fatal($error, array $context = array()) global() argument
[all...]
H A DCLI.php62 public function error($message, array $context = array()) function in splitbrain\\phpcli\\CLI
64 $this->log('error', $message, $context);

123